2023-08-06 08:48:11 -04:00
|
|
|
# SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
2023-07-09 11:52:59 -04:00
|
|
|
find_package(assimp REQUIRED)
|
2023-07-09 11:53:12 -04:00
|
|
|
set_target_properties(assimp::assimp PROPERTIES MAP_IMPORTED_CONFIG_DEBUG Release)
|
2023-07-09 11:52:59 -04:00
|
|
|
|
2023-04-09 15:28:00 -04:00
|
|
|
add_library(mdlpart STATIC mdlpart.cpp)
|
2023-07-09 11:52:59 -04:00
|
|
|
target_link_libraries(mdlpart PUBLIC physis z ${LIBRARIES} Qt5::Core Qt5::Widgets renderer NovusCommon assimp::assimp)
|
2023-04-09 15:28:00 -04:00
|
|
|
target_include_directories(mdlpart PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|