reactos/lib/nls/normalize/CMakeLists.txt
Sir Richard bba1ffd927 [CMAKE]: Watch and learn, Amine...
svn path=/branches/cmake-bringup/; revision=48311
2010-07-27 16:07:39 +00:00

13 lines
420 B
CMake

include_directories(${REACTOS_SOURCE_DIR}/lib/3rdparty/icu4ros/icu/source/common)
# Special C++ flags
add_definitions(-fno-exceptions -fno-rtti)
# Re-definition of WINVER
remove_definitions(-DWINVER=0x502) # This removes a top-level definition: The compiler never gets it on the command-line
add_definitions(-DWINVER=0x600) # And now we add our own
file(GLOB_RECURSE SOURCE "*.cpp")
add_library(normalize ${SOURCE})