kraken_convert now takes an '-o' argument to specify the output bundle. Created cmake scripts to use kraken_convert to bundle standard assets. HRTF Kemar data is now bundled by cmake scripts. Added README.md for HRTF Kemar data

This commit is contained in:
2019-11-30 17:57:45 -08:00
parent 8abe05d950
commit 20121e7eaa
379 changed files with 509 additions and 29 deletions

View File

@@ -4,10 +4,10 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
if (WIN32)
add_executable(kraken_cube WIN32 main_win.cpp)
add_executable(kraken_cube WIN32 main_win.cpp hello_cube.cpp)
add_compile_definitions(UNICODE)
else(WIN32)
add_executable(kraken_cube main_macos.mm)
add_executable(kraken_cube main_macos.mm hello_cube.cpp)
set(CMAKE_CXX_COMPILER "clang++")
endif(WIN32)