mirror of
https://github.com/overte-org/overte.git
synced 2025-05-01 17:26:26 +02:00
15 lines
475 B
CMake
15 lines
475 B
CMake
set(TARGET_NAME gpu-textures-tests)
|
|
# This is not a testcase -- just set it up as a regular hifi project
|
|
setup_hifi_project(Quick Gui Script)
|
|
setup_memory_debugger()
|
|
set_target_properties(${TARGET_NAME} PROPERTIES FOLDER "Tests/manual-tests/")
|
|
link_hifi_libraries(
|
|
shared shaders task networking gl
|
|
ktx gpu octree
|
|
${PLATFORM_GL_BACKEND}
|
|
)
|
|
|
|
set(EXTRA_DEPLOY_OPTIONS "--qmldir \"${PROJECT_SOURCE_DIR}/qml\"")
|
|
package_libraries_for_deployment()
|
|
|
|
target_nsight()
|