cmake_minimum_required (VERSION 3.13) cmake_policy(SET CMP0077 NEW) project (AnimTestbed VERSION 0.0.1 LANGUAGES CXX C) find_package(Threads) find_package(OpenGL REQUIRED) # glfw set(GLFW_BUILD_DOCS Off) set(GLFW_BUILD_EXAMPLES Off) set(GLFW_BUILD_TESTS Off) set(GLFW_BUILD_INSTALL Off) add_subdirectory (3rdparty/glfw) # ozz set(ozz_build_tools ON) set(ozz_build_fbx OFF CACHE BOOL "") set(ozz_build_gltf ON) set(ozz_build_data OFF CACHE BOOL "") set(ozz_build_samples OFF CACHE BOOL "") set(ozz_build_howtos OFF CACHE BOOL "") set(ozz_build_tests OFF CACHE BOOL "" ) set(ozz_build_simd_ref OFF CACHE BOOL "") set(ozz_build_msvc_rt_dll OFF CACHE BOOL "") add_subdirectory (3rdparty/ozz-animation) # Simulator Executable add_executable(AnimTestbed) target_include_directories( AnimTestbed PUBLIC $ PUBLIC $ PUBLIC $ PUBLIC $ PUBLIC $ ) target_link_libraries(AnimTestbed glfw ozz_base ozz_geometry ozz_animation ${OPENGL_LIBRARIES}) target_sources(AnimTestbed PRIVATE src/main.cc 3rdparty/glfw/deps/glad_gl.c 3rdparty/imgui/imgui.cpp 3rdparty/imgui/imgui_draw.cpp 3rdparty/imgui/imgui_widgets.cpp 3rdparty/imgui/imgui_demo.cpp 3rdparty/imgui/backends/imgui_impl_glfw.cpp 3rdparty/imgui/backends/imgui_impl_opengl3.cpp )