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-12-28 15:22:38 -05:00

15 lines
360 B
CMake
Executable file

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)
target_include_directories(ModelCompiler PUBLIC
include)
set_engine_properties(ModelCompiler)