WIP MacOS support for smoke test

This commit is contained in:
2023-12-28 15:09:39 -08:00
parent 402c4330bb
commit 39e23436ee
6 changed files with 32 additions and 48 deletions

View File

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