mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
11 lines
362 B
CMake
11 lines
362 B
CMake
|
|
PROJECT(more)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/conutils)
|
|
|
|
add_executable(more more.c more.rc)
|
|
set_module_type(more win32cui UNICODE)
|
|
target_link_libraries(more conutils ${PSEH_LIB})
|
|
add_importlibs(more advapi32 msvcrt kernel32)
|
|
set_target_properties(more PROPERTIES SUFFIX ".com")
|
|
add_cd_file(TARGET more DESTINATION reactos/system32 FOR all)
|