Set IDE folder for CMake 'documentation' target only if it exists
The documentation target will be come optional, so do not reference it when it does not exist.
This commit is contained in:
parent
e49efe9150
commit
09be0bb049
|
@ -573,7 +573,9 @@ if(BUILD_TESTING)
|
|||
CMAKE_SET_TARGET_FOLDER(CMakeLibTests "Tests")
|
||||
endif()
|
||||
CMAKE_SET_TARGET_FOLDER(cmw9xcom "Utilities/Win9xCompat")
|
||||
if(TARGET documentation)
|
||||
CMAKE_SET_TARGET_FOLDER(documentation "Documentation")
|
||||
endif()
|
||||
|
||||
# add a test
|
||||
add_test(SystemInformationNew "${CMAKE_CMAKE_COMMAND}"
|
||||
|
|
Loading…
Reference in New Issue