mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-17 11:31:00 +00:00
10 lines
346 B
CMake
10 lines
346 B
CMake
set(CMAKE_CXX_FLAGS "--std=c++11 -Wall -Werror=return-type -Wno-multichar")
|
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../CIncludes)
|
|
add_executable(MakePEF MakePEF.cc rs6000.h PEF.h)
|
|
|
|
add_executable(MakeImport MakeImport.cc PEF.h)
|
|
target_link_libraries(MakeImport ResourceFiles)
|
|
|
|
install(TARGETS MakePEF MakeImport RUNTIME DESTINATION bin)
|