Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
prism/tools/modelcompiler/CMakeLists.txt
2020-09-21 09:58:42 -04:00

19 lines
443 B
CMake
Executable file

find_package(assimp REQUIRED)
add_platform_executable(
TARGET ModelCompiler
APP_CLASS ModelEditor
APP_INCLUDE modeleditor.hpp
SRC
src/modeleditor.cpp
include/modeleditor.hpp)
target_link_libraries(ModelCompiler PUBLIC
Core
EditorCommon
PRIVATE
${ASSIMP_LIBRARIES})
target_include_directories(ModelCompiler PUBLIC
include
PRIVATE
${ASSIMP_INCLUDE_DIRS})
set_engine_properties(ModelCompiler)