2015-11-18 19:24:08 +00:00
|
|
|
PROJECT(CHARMAP)
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
includes)
|
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
precomp.h
|
|
|
|
MainWindow.cpp
|
|
|
|
)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(charmap MODULE
|
2015-11-18 19:24:08 +00:00
|
|
|
${SOURCE}
|
|
|
|
charmap.rc)
|
|
|
|
|
|
|
|
set_module_type(charmap win32gui UNICODE)
|
2020-09-18 09:08:58 +00:00
|
|
|
target_link_libraries(charmap uuid wine cpprt atl_classes)
|
2020-09-18 07:34:18 +00:00
|
|
|
set_target_cpp_properties(charmap WITH_EXCEPTIONS WITH_RTTI)
|
2015-11-18 19:24:08 +00:00
|
|
|
add_importlibs(charmap advapi32 user32 gdi32 comctl32 version msvcrt kernel32 ole32 uxtheme ntdll)
|
|
|
|
add_pch(charmap precomp.h SOURCE)
|
|
|
|
add_cd_file(TARGET charmap DESTINATION reactos/system32 FOR all)
|