comparison cmake/FindD.cmake @ 368:185df9220ea7

Fixed startsWith. Implemented meta-object members as ranges. Freed QMetaObject from stuff that belongs to MetaClass
author Max Samukha <maxter@maxter.com>
date Mon, 28 Jun 2010 21:29:32 +0300
parents da4235301224
children d2f48c4cb3e3
comparison
equal deleted inserted replaced
367:f69341b40588 368:185df9220ea7
85 set(D_RELEASE_FLAGS ${D_RELEASE_FLAGS} -inline) 85 set(D_RELEASE_FLAGS ${D_RELEASE_FLAGS} -inline)
86 set(D_VERSION_FLAG -version) 86 set(D_VERSION_FLAG -version)
87 set(D_DEBUG_FLAG -debug) 87 set(D_DEBUG_FLAG -debug)
88 endif(D_IS_LLVM) 88 endif(D_IS_LLVM)
89 if(CMAKE_HOST_WIN32) 89 if(CMAKE_HOST_WIN32)
90 set(D_RELEASE_FLAGS ${D_RELEASE_FLAGS} -L/subsystem:windows) 90 # Linking fails with this. Commenting out for now.
91 # set(D_RELEASE_FLAGS ${D_RELEASE_FLAGS} -L/subsystem:windows)
91 endif(CMAKE_HOST_WIN32) 92 endif(CMAKE_HOST_WIN32)
92 set(D_DEBUG_FLAGS ${D_DEBUG_FLAGS} ${D_DEBUG_FLAG}) 93 set(D_DEBUG_FLAGS ${D_DEBUG_FLAGS} ${D_DEBUG_FLAG})
93 94
94 # Unittest flags. 95 # Unittest flags.
95 option(UNITTEST "Includes unittests" "OFF") 96 option(UNITTEST "Includes unittests" "OFF")