spine-runtimes/spine-cpp/tests/CMakeLists.txt
Mario Zechner cc4f11fded [cpp] Simplify directory structure, add DebugPrinter program
- spine-cpp/spine-cpp was moved into spine-cpp directory, so spine-cpp/spine-cpp/src -> spine-cpp/src, spine-cpp/spine-cpp/include -> spine-cpp/include
- Added scaffold for DebugPrinter to be used by runtime comparison tests
- Added build.sh
2025-07-11 11:00:44 +02:00

4 lines
213 B
CMake

# Create DebugPrinter executable
add_executable(DebugPrinter ${CMAKE_CURRENT_SOURCE_DIR}/src/DebugPrinter.cpp)
target_link_libraries(DebugPrinter spine-cpp)
target_compile_features(DebugPrinter PRIVATE cxx_std_11)