mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-05-11 22:54:38 -05:00
15 lines
386 B
CMake
15 lines
386 B
CMake
# CMake Windows defaults module
|
|
|
|
include_guard(GLOBAL)
|
|
|
|
# Enable find_package targets to become globally available targets
|
|
set(CMAKE_FIND_PACKAGE_TARGETS_GLOBAL TRUE)
|
|
|
|
include(buildspec)
|
|
|
|
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
|
|
set(CMAKE_INSTALL_PREFIX
|
|
"$ENV{ALLUSERSPROFILE}/obs-studio/plugins"
|
|
CACHE STRING "Default plugin installation directory" FORCE)
|
|
endif()
|