Skip to content

Commit

Permalink
tests: fix nosokolapp build targets for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
floooh committed Sep 20, 2024
1 parent 3311dc7 commit 689c826
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/compile/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ if (ANDROID)
add_library(sokol-compiletest-c SHARED ${c_sources})
else()
add_executable(sokol-compiletest-c ${exe_type} ${c_sources})
add_executable(sokol-compiletest-nosokolapp-c ${exe_type} sokol_gfx.c sokol_imgui_nosokolapp.c sokol_nuklear_nosokolapp.c)
add_executable(sokol-compiletest-nosokolapp-c sokol_gfx.c sokol_imgui_nosokolapp.c sokol_nuklear_nosokolapp.c)
endif()
target_link_libraries(sokol-compiletest-c PUBLIC cimgui nuklear spine)
target_link_libraries(sokol-compiletest-nosokolapp-c PUBLIC cimgui nuklear)
Expand All @@ -56,7 +56,7 @@ if (ANDROID)
add_library(sokol-compiletest-cxx SHARED ${cxx_sources})
else()
add_executable(sokol-compiletest-cxx ${exe_type} ${cxx_sources})
add_executable(sokol-compiletest-nosokolapp-cxx ${exe_type} sokol_gfx.cc sokol_imgui_nosokolapp.cc)
add_executable(sokol-compiletest-nosokolapp-cxx sokol_gfx.cc sokol_imgui_nosokolapp.cc)
endif()
target_link_libraries(sokol-compiletest-cxx PUBLIC imgui nuklear spine)
target_link_libraries(sokol-compiletest-nosokolapp-cxx PUBLIC imgui)
Expand Down

0 comments on commit 689c826

Please sign in to comment.