Retro68/PEFTools/CMakeLists.txt

11 lines
362 B
CMake
Raw Normal View History

2015-08-30 09:57:07 +00:00
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})
2015-08-30 23:16:54 +00:00
install(TARGETS MakePEF MakeImport RUNTIME DESTINATION bin)