Initial commit

This commit is contained in:
Martin Felis
2021-11-11 21:22:24 +01:00
commit b78045ffe7
812 changed files with 421882 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
cmake_minimum_required (VERSION 3.0)
# Defines the project's name
project(ozz_sub)
# ozz requires C++11
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
# Activates unit tests
enable_testing()
# Includes ozz-animation as a sub directory, using an arbitrary "ozz-animation/" binary output folder.
add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/../.." ozz-animation/)
# Then link with ozz libraries as any other cmake target.
add_executable(test_sub_project
test_sub_project.cc)
target_link_libraries(test_sub_project
ozz_animation)
# Adds some tests
add_test(NAME test_sub_project COMMAND test_sub_project)
if(TARGET fbx2ozz)
add_test(NAME test_sub_fbx2ozz COMMAND fbx2ozz "--version")
endif()
+1
View File
@@ -0,0 +1 @@
Files in this folder are used to test building ozz as a sub project, aka included (add_subdirectory) from the CMakeLists.txt of another project.
+41
View File
@@ -0,0 +1,41 @@
//----------------------------------------------------------------------------//
// //
// ozz-animation is hosted at http://github.com/guillaumeblanc/ozz-animation //
// and distributed under the MIT License (MIT). //
// //
// Copyright (c) Guillaume Blanc //
// //
// Permission is hereby granted, free of charge, to any person obtaining a //
// copy of this software and associated documentation files (the "Software"), //
// to deal in the Software without restriction, including without limitation //
// the rights to use, copy, modify, merge, publish, distribute, sublicense, //
// and/or sell copies of the Software, and to permit persons to whom the //
// Software is furnished to do so, subject to the following conditions: //
// //
// The above copyright notice and this permission notice shall be included in //
// all copies or substantial portions of the Software. //
// //
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR //
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, //
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL //
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER //
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING //
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER //
// DEALINGS IN THE SOFTWARE. //
// //
//----------------------------------------------------------------------------//
#include <cstdlib>
// Includes a file from ozz
#include "ozz/animation/runtime/skeleton.h"
int main(int argc, char const* argv[]) {
(void)argc;
(void)argv;
// Instantaiates an object from ozz library.
ozz::animation::Skeleton skeleton;
return skeleton.num_joints() == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
}