mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-18 11:08:26 +00:00
10 lines
353 B
CMake
10 lines
353 B
CMake
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})
|
|
target_include_directories(MakeImport PRIVATE ${Boost_INCLUDE_DIR})
|
|
|
|
install(TARGETS MakePEF MakeImport RUNTIME DESTINATION bin)
|