kraken_cube test now includes headers in generated projects

This commit is contained in:
2024-01-21 13:56:33 -08:00
parent a0de671125
commit c7afc9583d

View File

@@ -20,12 +20,12 @@ add_custom_target(kraken_cube_assets ALL
)
if (WIN32)
add_executable(kraken_cube WIN32 main_win.cpp harness.cpp hello_cube.cpp)
add_executable(kraken_cube WIN32 main_win.cpp harness.cpp harness.h hello_cube.cpp hello_cube.h)
add_compile_definitions(UNICODE)
list (APPEND EXTRA_LIBS shcore)
else(WIN32)
add_executable(kraken_cube main_macos.mm harness.cpp hello_cube.cpp)
add_executable(kraken_cube main_macos.mm harness.cpp harness.h hello_cube.cpp hello_cube.h)
set(CMAKE_CXX_COMPILER "clang++")
list (APPEND EXTRA_LIBS "-framework QuartzCore")
list (APPEND EXTRA_LIBS "-framework Metal")