mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-05 19:36:47 +02:00
37 lines
1.2 KiB
CMake
37 lines
1.2 KiB
CMake
#
|
|
# FindNVTT.cmake
|
|
#
|
|
# Try to find NVIDIA texture tools library and include path.
|
|
# Once done this will define
|
|
#
|
|
# NVTT_FOUND
|
|
# NVTT_INCLUDE_DIRS
|
|
# NVTT_LIBRARIES
|
|
# NVTT_DLL_PATH
|
|
#
|
|
# Created on 4/14/2017 by Stephen Birarda
|
|
# Copyright 2017 High Fidelity, Inc.
|
|
#
|
|
# Distributed under the Apache License, Version 2.0.
|
|
# See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
#
|
|
|
|
include("${MACRO_DIR}/HifiLibrarySearchHints.cmake")
|
|
hifi_library_search_hints("nvtt")
|
|
|
|
find_path(NVTT_INCLUDE_DIRS nvtt/nvtt.h PATH_SUFFIXES include HINTS ${NVTT_SEARCH_DIRS})
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_library(NVTT_LIBRARY_RELEASE nvtt PATH_SUFFIXES "lib" "Release.x64/lib" HINTS ${NVTT_SEARCH_DIRS})
|
|
find_library(NVTT_LIBRARY_DEBUG nvtt PATH_SUFFIXES "lib" "Debug.x64/lib" HINTS ${NVTT_SEARCH_DIRS})
|
|
|
|
include(SelectLibraryConfigurations)
|
|
select_library_configurations(NVTT)
|
|
|
|
if (WIN32)
|
|
find_path(NVTT_DLL_PATH nvtt.dll PATH_SUFFIXES "Release.x64/bin" HINTS ${NVTT_SEARCH_DIRS})
|
|
find_package_handle_standard_args(NVTT DEFAULT_MSG NVTT_INCLUDE_DIRS NVTT_LIBRARIES NVTT_DLL_PATH)
|
|
else ()
|
|
find_package_handle_standard_args(NVTT DEFAULT_MSG NVTT_INCLUDE_DIRS NVTT_LIBRARIES)
|
|
endif ()
|