mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-28 11:30:32 +00:00
10 lines
366 B
CMake
10 lines
366 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 xcoff.h powerpc.h external.h PEF.h)
|
|
|
|
add_executable(MakeImport MakeImport.cc PEF.h)
|
|
target_link_libraries(MakeImport ResourceFiles)
|
|
|
|
install(TARGETS MakePEF MakeImport RUNTIME DESTINATION bin)
|