2021-09-29 09:30:32 +00:00
|
|
|
project(iernonce)
|
|
|
|
|
|
|
|
include_directories(include)
|
2013-05-18 14:41:18 +00:00
|
|
|
|
|
|
|
spec2def(iernonce.dll iernonce.spec)
|
|
|
|
|
2021-09-29 09:30:32 +00:00
|
|
|
list(APPEND SOURCE
|
|
|
|
dialog.cpp
|
|
|
|
iernonce.cpp
|
|
|
|
registry.cpp
|
|
|
|
iernonce.h)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(iernonce MODULE
|
2021-09-29 09:30:32 +00:00
|
|
|
${SOURCE}
|
2016-03-25 23:54:55 +00:00
|
|
|
iernonce.rc
|
2013-05-18 14:41:18 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/iernonce.def)
|
|
|
|
|
|
|
|
set_module_type(iernonce win32dll UNICODE)
|
2021-09-29 09:30:32 +00:00
|
|
|
target_link_libraries(iernonce cppstl atl_classes)
|
|
|
|
set_target_cpp_properties(iernonce WITH_EXCEPTIONS)
|
|
|
|
add_importlibs(iernonce advapi32 msvcrt gdi32 ole32 shell32 shlwapi kernel32 user32 ntdll)
|
|
|
|
add_pch(iernonce iernonce.h SOURCE)
|
2013-05-18 14:41:18 +00:00
|
|
|
add_cd_file(TARGET iernonce DESTINATION reactos/system32 FOR all)
|