[CMake] Symbian support?
Alexander Neundorf
a.neundorf-work at gmx.net
Wed May 14 16:43:42 EDT 2008
On Wednesday 14 May 2008, Vikranth Gaddam wrote:
> Hi
>
> I have seen people asking questions related to cmake support for symbian
> builds.
>
> I would like to know if this is supported or any plans to support this :)
It is not yet supported, but shouldn't be a bigger problem.
You need a file for the operating system and maybe specific files for the
compiler/linker with symbian-specific options.
Attached you can see a Symbian.cmake which is how far we got with this. Copy
it into Modules/Platform/ and then see how far you get.
I'll happily help (but will be not always online until end of next week).
Alex
-------------- next part --------------
# SET(WIN32 1) maybe ?
SET(CMAKE_STATIC_LIBRARY_PREFIX "")
SET(CMAKE_STATIC_LIBRARY_SUFFIX ".lib")
SET(CMAKE_SHARED_LIBRARY_PREFIX "") # lib
SET(CMAKE_SHARED_LIBRARY_SUFFIX ".dll") # .so
SET(CMAKE_IMPORT_LIBRARY_PREFIX "")
SET(CMAKE_IMPORT_LIBRARY_SUFFIX ".lib")
SET(CMAKE_EXECUTABLE_SUFFIX ".exe") # .exe
SET(CMAKE_LINK_LIBRARY_SUFFIX ".lib")
SET(CMAKE_DL_LIBS "")
SET(CMAKE_FIND_LIBRARY_PREFIXES "")
SET(CMAKE_FIND_LIBRARY_SUFFIXES ".lib")
# for nmake make long command lines are redirected to a file
# with the following syntax, see Windows-bcc32.cmake for use
IF(CMAKE_GENERATOR MATCHES "NMake")
SET(CMAKE_START_TEMP_FILE "@<<\n")
SET(CMAKE_END_TEMP_FILE "\n<<")
ENDIF(CMAKE_GENERATOR MATCHES "NMake")
SET(SYMBIAN 1)
# is it more like windows ?
# SET(WIN32 1)
# INCLUDE(Platform/WindowsPaths)
# or like unix, e.g. libraries in lib/ ?
# SET(UNIX 1)
# INCLUDE(Platform/UnixPaths)
More information about the CMake
mailing list