mirror of
https://github.com/redstrate/Novus.git
synced 2025-05-08 02:27:46 +00:00
12 lines
No EOL
419 B
CMake
12 lines
No EOL
419 B
CMake
# SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
add_library(mdlpart STATIC)
|
|
target_sources(mdlpart PRIVATE
|
|
mdlpart.cpp
|
|
mdlpart.h
|
|
vulkanwindow.cpp
|
|
vulkanwindow.h
|
|
)
|
|
target_link_libraries(mdlpart PUBLIC physis z Qt6::Core Qt6::Widgets renderer novus-common tinygltf)
|
|
target_include_directories(mdlpart PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) |