Commit dc464c1d by Tobias Hammer Committed by GitHub

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.
parent bf655de0
......@@ -23,7 +23,9 @@ include(AbseilInstallDirs)
# project that sets
# set_property(GLOBAL PROPERTY USE_FOLDERS ON)
# 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()
#
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment