mirror of
https://github.com/reactos/reactos
synced 2025-10-05 16:02:58 +02:00
- Move sdk\include\reactos\wine to sdk\include\wine - Reorder the directories in include_directories() to be closer to alphabetical. This should make it easier to determine what global include directories can be removed in the future.
21 lines
523 B
CMake
21 lines
523 B
CMake
PROJECT(CHARMAP)
|
|
|
|
include_directories(
|
|
includes)
|
|
|
|
list(APPEND SOURCE
|
|
precomp.h
|
|
MainWindow.cpp
|
|
)
|
|
|
|
add_library(charmap MODULE
|
|
${SOURCE}
|
|
charmap.rc)
|
|
|
|
set_module_type(charmap win32gui UNICODE)
|
|
target_link_libraries(charmap uuid cpprt atl_classes)
|
|
set_target_cpp_properties(charmap WITH_EXCEPTIONS WITH_RTTI)
|
|
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)
|