18 lines
428 B
CMake
18 lines
428 B
CMake
if (TARGET ScopeGuard)
|
|
return()
|
|
endif()
|
|
|
|
set(_ScopeGuard_SourceDir ${IMGUI_NODE_EDITOR_ROOT_DIR}/external/ScopeGuard)
|
|
set(_ScopeGuard_BinaryDir ${CMAKE_BINARY_DIR}/external/ScopeGuard)
|
|
|
|
add_subdirectory(${_ScopeGuard_SourceDir} ${_ScopeGuard_BinaryDir})
|
|
|
|
include(${CMAKE_ROOT}/Modules/FindPackageHandleStandardArgs.cmake)
|
|
|
|
find_package_handle_standard_args(
|
|
ScopeGuard
|
|
REQUIRED_VARS
|
|
_ScopeGuard_SourceDir
|
|
)
|
|
|