mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 18:16:08 +02:00
13 lines
353 B
CMake
13 lines
353 B
CMake
macro(AUTO_MTC TARGET ROOT_DIR)
|
|
if (NOT TARGET mtc)
|
|
add_subdirectory("${ROOT_DIR}/tools/mtc" "${ROOT_DIR}/tools/mtc")
|
|
endif ()
|
|
|
|
set(AUTOMTC_SRC ${TARGET}_automtc.cpp)
|
|
|
|
file(GLOB INCLUDE_FILES src/*.h)
|
|
|
|
add_custom_command(OUTPUT ${AUTOMTC_SRC} COMMAND mtc -o ${AUTOMTC_SRC} ${INCLUDE_FILES} DEPENDS mtc ${INCLUDE_FILES})
|
|
endmacro()
|
|
|
|
|