blob: 9a73c08e70eaab8e65e465b720569ae3efa9e269 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
if (NOT ANDROID)
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/assets/comsi.s3m DESTINATION ${CMAKE_BINARY_DIR})
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/assets/comsi.s3m DESTINATION ${CMAKE_BINARY_DIR}/Debug)
set(c_sources
sokol_log_test.c
sokol_args_test.c
sokol_audio_test.c
sokol_debugtext_test.c
sokol_fetch_test.c
sokol_gfx_test.c
sokol_gl_test.c
sokol_shape_test.c
sokol_color_test.c
sokol_spine_test.c
sokol_test.c
)
add_executable(sokol-test ${c_sources})
target_link_libraries(sokol-test PUBLIC spine)
configure_c(sokol-test)
endif()
|