mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
11 lines
362 B
CMake
11 lines
362 B
CMake
set(CMAKE_CXX_FLAGS "--std=c++11 -Wall -Werror=return-type -Wno-multichar")
|
|
|
|
find_package(Boost COMPONENTS filesystem system REQUIRED)
|
|
|
|
add_executable(MakePEF MakePEF.cc rs6000.h PEF.h)
|
|
|
|
add_executable(MakeImport MakeImport.cc PEF.h)
|
|
target_link_libraries(MakeImport ResourceFiles ${Boost_LIBRARIES})
|
|
|
|
install(TARGETS MakePEF MakeImport RUNTIME DESTINATION bin)
|