[ROSAPPS] Fix GCC8 warnings
[reactos.git] / modules / rosapps / applications / devutils / createspec / CMakeLists.txt
1
2 if(GCC AND GCC_VERSION VERSION_GREATER 7)
3 add_compile_flags("-Wno-stringop-overflow")
4 endif()
5
6 add_executable(createspec createspec.c)
7 set_module_type(createspec win32cui)
8 target_link_libraries(createspec wine)
9 add_importlibs(createspec dbghelp msvcrt kernel32)
10 add_cd_file(TARGET createspec DESTINATION reactos/system32 FOR all)