mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-08 00:04:54 +08:00
- 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
4 lines
213 B
CMake
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) |