mirror of
https://github.com/FirestormViewer/phoenix-firestorm.git
synced 2026-08-14 08:53:53 +00:00
14 lines
266 B
CMake
14 lines
266 B
CMake
# -*- cmake -*-
|
|
include(Prebuilt)
|
|
|
|
set(NVAPI ON CACHE BOOL "Use NVAPI.")
|
|
|
|
if (NVAPI)
|
|
if (WINDOWS)
|
|
add_library( ll::nvapi INTERFACE IMPORTED )
|
|
target_link_libraries( ll::nvapi INTERFACE nvapi)
|
|
use_prebuilt_binary(nvapi)
|
|
endif (WINDOWS)
|
|
endif (NVAPI)
|
|
|