metaforce/DataSpec/CMakeLists.txt

28 lines
720 B
CMake
Raw Normal View History

2015-07-07 03:22:44 +00:00
include_directories(${HECL_INCLUDE_DIR} ${NOD_LIB_INCLUDE_DIR})
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
2015-07-09 06:40:55 +00:00
# Magic ingredient
find_package(atdna REQUIRED)
# Assembles a source/header pair list for use in a DNA library
macro(make_dnalist outlist inlist)
foreach(type ${inlist})
atdna(${type}.cpp ${type}.hpp)
list(APPEND ${outlist} ${type}.cpp ${type}.hpp)
endforeach()
endmacro()
2015-07-07 03:22:44 +00:00
add_subdirectory(DNACommon)
add_subdirectory(DNAMP1)
add_subdirectory(DNAMP2)
add_subdirectory(DNAMP3)
add_library(RetroDataSpec
SpecBase.cpp
SpecMP1.cpp
SpecMP2.cpp
SpecMP3.cpp)
target_link_libraries(RetroDataSpec
DNAMP1
DNAMP3)