mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
c004b53d77
Style fixes Co-authored-by: Hermès BÉLUSCA - MAÏTO <hermes.belusca-maito@reactos.org> Co-authored-by: Victor Perevertkin <victor@perevertkin.ru>
9 lines
327 B
CMake
9 lines
327 B
CMake
|
|
add_executable(createspec createspec.c)
|
|
set_module_type(createspec win32cui)
|
|
target_link_libraries(createspec wine)
|
|
if(NOT MSVC)
|
|
target_compile_options(createspec PRIVATE -Wno-stringop-overflow)
|
|
endif()
|
|
add_importlibs(createspec dbghelp msvcrt kernel32)
|
|
add_cd_file(TARGET createspec DESTINATION reactos/system32 FOR all)
|