Merge pull request #117 from PetterS/add_ide_folder
Set the FOLDER property for Abseil targets.
This commit is contained in:
commit
a193b3d3b7
1 changed files with 11 additions and 0 deletions
|
@ -16,6 +16,11 @@
|
|||
|
||||
include(CMakeParseArguments)
|
||||
|
||||
# The IDE folder for Abseil that will be used if Abseil is included in a CMake
|
||||
# project that sets
|
||||
# set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
||||
# For example, Visual Studio supports folders.
|
||||
set(ABSL_IDE_FOLDER Abseil)
|
||||
|
||||
#
|
||||
# create a library in the absl namespace
|
||||
|
@ -49,6 +54,8 @@ function(absl_library)
|
|||
PUBLIC ${ABSL_COMMON_INCLUDE_DIRS} ${ABSL_LIB_PUBLIC_INCLUDE_DIRS}
|
||||
PRIVATE ${ABSL_LIB_PRIVATE_INCLUDE_DIRS}
|
||||
)
|
||||
# Add all Abseil targets to a a folder in the IDE for organization.
|
||||
set_property(TARGET ${_NAME} PROPERTY FOLDER ${ABSL_IDE_FOLDER})
|
||||
|
||||
if(ABSL_LIB_EXPORT_NAME)
|
||||
add_library(absl::${ABSL_LIB_EXPORT_NAME} ALIAS ${_NAME})
|
||||
|
@ -92,6 +99,8 @@ function(absl_header_library)
|
|||
PUBLIC ${ABSL_COMMON_INCLUDE_DIRS} ${ABSL_HO_LIB_PUBLIC_INCLUDE_DIRS}
|
||||
PRIVATE ${ABSL_HO_LIB_PRIVATE_INCLUDE_DIRS}
|
||||
)
|
||||
# Add all Abseil targets to a a folder in the IDE for organization.
|
||||
set_property(TARGET ${_NAME} PROPERTY FOLDER ${ABSL_IDE_FOLDER})
|
||||
|
||||
if(ABSL_HO_LIB_EXPORT_NAME)
|
||||
add_library(absl::${ABSL_HO_LIB_EXPORT_NAME} ALIAS ${_NAME})
|
||||
|
@ -138,6 +147,8 @@ function(absl_test)
|
|||
PUBLIC ${ABSL_COMMON_INCLUDE_DIRS} ${ABSL_TEST_PUBLIC_INCLUDE_DIRS}
|
||||
PRIVATE ${GMOCK_INCLUDE_DIRS} ${GTEST_INCLUDE_DIRS}
|
||||
)
|
||||
# Add all Abseil targets to a a folder in the IDE for organization.
|
||||
set_property(TARGET ${_NAME}_bin PROPERTY FOLDER ${ABSL_IDE_FOLDER})
|
||||
|
||||
add_test(${_NAME} ${_NAME}_bin)
|
||||
endif(BUILD_TESTING)
|
||||
|
|
Loading…
Reference in a new issue