Allow overriding Abseil IDE folder (#724)

by not setting when ABSL_IDE_FOLDER is provided from outside.

This allows to move Abseil into e.g. a 3rd party lib folder when used
in a larger project.
pull/737/head
Tobias Hammer 5 years ago committed by GitHub
parent bf655de09b
commit dc464c1dc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CMake/AbseilHelpers.cmake

@ -23,7 +23,9 @@ include(AbseilInstallDirs)
# project that sets # project that sets
# set_property(GLOBAL PROPERTY USE_FOLDERS ON) # set_property(GLOBAL PROPERTY USE_FOLDERS ON)
# For example, Visual Studio supports folders. # For example, Visual Studio supports folders.
set(ABSL_IDE_FOLDER Abseil) if(NOT DEFINED ABSL_IDE_FOLDER)
set(ABSL_IDE_FOLDER Abseil)
endif()
# absl_cc_library() # absl_cc_library()
# #

Loading…
Cancel
Save