mirror of
https://github.com/reactos/reactos.git
synced 2026-06-20 10:32:41 +08:00
13 lines
451 B
CMake
13 lines
451 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/libs/fmifs)
|
|
|
|
add_executable(format format.c format.rc)
|
|
set_module_type(format win32cui UNICODE)
|
|
target_link_libraries(format conutils)
|
|
add_importlibs(format fmifs msvcrt kernel32)
|
|
if(MSVC AND ARCH STREQUAL "i386")
|
|
add_importlibs(format ntdll) # For _allmul
|
|
endif()
|
|
set_target_properties(format PROPERTIES SUFFIX ".com")
|
|
add_cd_file(TARGET format DESTINATION reactos/system32 FOR all)
|