reactos/dll/nls/normaliz/CMakeLists.txt
Hermès Bélusca-Maïto 9393fc320e
[FORMATTING] Remove trailing whitespace. Addendum to 34593d93.
Excluded: 3rd-party code (incl. wine) and most of the win32ss.
2021-09-13 03:52:22 +02:00

18 lines
496 B
CMake

remove_definitions(-D_WIN32_WINNT=0x502 -DWINVER=0x502)
add_definitions(-D_WIN32_WINNT=0x600 -DWINVER=0x600)
spec2def(normaliz.dll normaliz.spec ADD_IMPORTLIB)
list(APPEND SOURCE
IdnToAscii.c
IdnToUnicode.c
nameprep.c
normalize.c
${CMAKE_CURRENT_BINARY_DIR}/normaliz.def)
add_library(normaliz MODULE ${SOURCE})
set_module_type(normaliz win32dll ENTRYPOINT 0)
add_importlibs(normaliz msvcrt kernel32 ntdll)
add_cd_file(TARGET normaliz DESTINATION reactos/system32 FOR all)