1PROJECT(CHARMAP)
2
3include_directories(
4    includes)
5
6list(APPEND SOURCE
7    precomp.h
8    MainWindow.cpp
9	)
10
11add_library(charmap MODULE
12    ${SOURCE}
13    charmap.rc)
14
15set_module_type(charmap win32gui UNICODE)
16target_link_libraries(charmap uuid wine cpprt atl_classes)
17set_target_cpp_properties(charmap WITH_EXCEPTIONS WITH_RTTI)
18add_importlibs(charmap advapi32 user32 gdi32 comctl32 version msvcrt kernel32 ole32 uxtheme ntdll)
19add_pch(charmap precomp.h SOURCE)
20add_cd_file(TARGET charmap DESTINATION reactos/system32 FOR all)
21