reactos/base/applications/write/CMakeLists.txt

12 lines
377 B
CMake
Raw Normal View History

add_executable(write write.c rsrc.rc)
set_module_type(write win32gui UNICODE)
add_importlibs(write user32 gdi32 msvcrt kernel32)
add_cd_file(TARGET write DESTINATION reactos/system32 FOR all)
if(NOT MSVC)
# FIXME: http://www.cmake.org/Bug/view.php?id=12998
#allow_warnings(write)
set_source_files_properties(write.c PROPERTIES COMPILE_FLAGS "-Wno-error")
endif()