mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
5644c2c39d
- Now that we have c++ flags set globally, no need to mention them on the respective targets. - debug.h : leftover from the kernel32 sync. svn path=/branches/cmake-bringup/; revision=48543
10 lines
No EOL
351 B
CMake
10 lines
No EOL
351 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/lib/3rdparty/icu4ros/icu/source/common)
|
|
|
|
# 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(idna ${SOURCE}) |