1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-22 20:17:46 +00:00
novus/extern/CMakeLists.txt

21 lines
593 B
Text
Raw Normal View History

# SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
# SPDX-License-Identifier: CC0-1.0
find_package(Corrosion REQUIRED)
FetchContent_Declare(
libphysis
GIT_REPOSITORY https://git.sr.ht/~redstrate/libphysis
2023-08-31 14:18:33 +02:00
GIT_TAG main
)
FetchContent_MakeAvailable(libphysis)
corrosion_import_crate(MANIFEST_PATH ${libphysis_SOURCE_DIR}/Cargo.toml)
target_include_directories(physis INTERFACE ${libphysis_SOURCE_DIR}/target/public)
target_link_libraries(physis INTERFACE unshield)
2023-09-23 14:08:41 -04:00
add_subdirectory(magic_enum)
2023-09-26 17:09:12 -04:00
add_subdirectory(tinygltf)
add_subdirectory(imgui)