You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
445 B
16 lines
445 B
2 months ago
|
set(CMAKE_FIND_ROOT_PATH ${CMAKE_CURRENT_LIST_DIR}/DebugRoot/NoExist ${CMAKE_CURRENT_LIST_DIR}/DebugRoot/Exist)
|
||
|
set(CMAKE_FIND_DEBUG_MODE ON)
|
||
|
find_package(DebugRoot
|
||
|
NO_DEFAULT_PATH
|
||
|
NO_PACKAGE_ROOT_PATH
|
||
|
NO_CMAKE_PATH
|
||
|
NO_CMAKE_ENVIRONMENT_PATH
|
||
|
NO_SYSTEM_ENVIRONMENT_PATH
|
||
|
NO_CMAKE_PACKAGE_REGISTRY
|
||
|
NO_CMAKE_SYSTEM_PATH
|
||
|
NO_CMAKE_INSTALL_PREFIX
|
||
|
NO_CMAKE_SYSTEM_PACKAGE_REGISTRY
|
||
|
PATHS /DebugRoot
|
||
|
)
|
||
|
set(CMAKE_FIND_DEBUG_MODE OFF)
|