[CMAKE]: Watch and learn, Amine...
[reactos.git] / lib / nls / scripts / CMakeLists.txt
1
2 include_directories(${REACTOS_SOURCE_DIR}/lib/3rdparty/icu4ros/icu/source/common)
3
4 # Special C++ flags
5 add_definitions(-fno-exceptions -fno-rtti)
6
7 # Re-definition of WINVER
8 remove_definitions(-DWINVER=0x502) # This removes a top-level definition: The compiler never gets it on the command-line
9 add_definitions(-DWINVER=0x600) # And now we add our own
10
11 file(GLOB_RECURSE SOURCE "*.cpp")
12
13 add_library(scripts ${SOURCE})