move model_converter from main e2d repo

This commit is contained in:
2019-02-21 15:07:16 +07:00
commit 3516ec4127
20 changed files with 699 additions and 0 deletions

7
CMakeLists.txt Normal file
View File

@@ -0,0 +1,7 @@
cmake_minimum_required(VERSION 3.11 FATAL_ERROR)
project(enduro2d-toolset)
option(E2D_BUILD_MODEL_CONVERTER "Build model converter" ON)
if(E2D_BUILD_MODEL_CONVERTER)
add_subdirectory(model_converter)
endif()