mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
9393fc320e
Excluded: 3rd-party code (incl. wine) and most of the win32ss.
18 lines
496 B
CMake
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)
|