Retro68/PEFTools/CMakeLists.txt

10 lines
366 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")
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../CIncludes)
add_executable(MakePEF MakePEF.cc xcoff.h powerpc.h external.h PEF.h)
add_executable(MakeImport MakeImport.cc PEF.h)
2015-08-30 23:16:54 +00:00
target_link_libraries(MakeImport ResourceFiles)
2015-08-30 23:16:54 +00:00
install(TARGETS MakePEF MakeImport RUNTIME DESTINATION bin)