mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
11 lines
260 B
CMake
11 lines
260 B
CMake
set(TARGET_NAME image)
|
|
setup_hifi_library()
|
|
link_hifi_libraries(shared gpu)
|
|
target_nvtt()
|
|
target_etc2comp()
|
|
|
|
if (UNIX AND NOT APPLE)
|
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
|
find_package(Threads REQUIRED)
|
|
target_link_libraries(image Threads::Threads)
|
|
endif()
|