Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 7c5567ca authored by PRUVOST Florent's avatar PRUVOST Florent
Browse files

Fix cmake_parse_arguments usage, we must use the prefix given

parent 7b5ed135
No related branches found
No related tags found
No related merge requests found
...@@ -157,34 +157,35 @@ macro(generate_pkgconfig_files) ...@@ -157,34 +157,35 @@ macro(generate_pkgconfig_files)
set(_options ) set(_options )
set(_oneValueArgs PROJECTNAME) set(_oneValueArgs PROJECTNAME)
set(_multiValueArgs LIBS LIBS_PRIVATE REQUIRED REQUIRED_PRIVATE) set(_multiValueArgs LIBS LIBS_PRIVATE REQUIRED REQUIRED_PRIVATE)
cmake_parse_arguments(generate_pkgconfig_file set(MN "generate_pkgconfig_files")
cmake_parse_arguments(${MN}
"${_options}" "${_oneValueArgs}" "${_options}" "${_oneValueArgs}"
"${_multiValueArgs}" ${ARGN} ) "${_multiValueArgs}" ${ARGN} )
if ( NOT DEFINED PROJECTNAME ) if ( NOT DEFINED ${MN}_PROJECTNAME )
set( PROJECTNAME ${CMAKE_PROJECT_NAME} ) set( ${MN}_PROJECTNAME ${CMAKE_PROJECT_NAME} )
endif() endif()
set(ARGN ${generate_pkgconfig_file_UNPARSED_ARGUMENTS}) set(ARGN ${${MN}_UNPARSED_ARGUMENTS})
# The link flags specific to this package and any required libraries # The link flags specific to this package and any required libraries
# that don't support PkgConfig # that don't support PkgConfig
list(APPEND ${PROJECTNAME}_PKGCONFIG_LIBS ${LIBS}) list(APPEND ${${MN}_PROJECTNAME}_PKGCONFIG_LIBS ${${MN}_LIBS})
# The link flags for private libraries required by this package but not # The link flags for private libraries required by this package but not
# exposed to applications # exposed to applications
list(APPEND ${PROJECTNAME}_PKGCONFIG_LIBS_PRIVATE ${LIBS_PRIVATE}) list(APPEND ${${MN}_PROJECTNAME}_PKGCONFIG_LIBS_PRIVATE ${${MN}_LIBS_PRIVATE})
# A list of packages required by this package # A list of packages required by this package
list(APPEND ${PROJECTNAME}_PKGCONFIG_REQUIRED ${REQUIRED}) list(APPEND ${${MN}_PROJECTNAME}_PKGCONFIG_REQUIRED ${${MN}_REQUIRED})
# A list of private packages required by this package but not exposed to # A list of private packages required by this package but not exposed to
# applications # applications
list(APPEND ${PROJECTNAME}_PKGCONFIG_REQUIRED_PRIVATE ${REQUIRED_PRIVATE}) list(APPEND ${${MN}_PROJECTNAME}_PKGCONFIG_REQUIRED_PRIVATE ${${MN}_REQUIRED_PRIVATE})
# Define required package # Define required package
# ----------------------- # -----------------------
gpc_clean_lib_list(${PROJECTNAME}) gpc_clean_lib_list(${${MN}_PROJECTNAME})
foreach(f IN LISTS ARGN) foreach(f IN LISTS ARGN)
get_filename_component(fname "${f}" NAME_WE) get_filename_component(fname "${f}" NAME_WE)
...@@ -215,16 +216,17 @@ macro(generate_env_file) ...@@ -215,16 +216,17 @@ macro(generate_env_file)
set(_options ) set(_options )
set(_oneValueArgs PROJECTNAME) set(_oneValueArgs PROJECTNAME)
set(_multiValueArgs ) set(_multiValueArgs )
set(MN "generate_env_file")
cmake_parse_arguments(generate_env_file cmake_parse_arguments(generate_env_file
"${_options}" "${_oneValueArgs}" "${_options}" "${_oneValueArgs}"
"${_multiValueArgs}" ${ARGN} ) "${_multiValueArgs}" ${ARGN} )
if ( NOT DEFINED PROJECTNAME ) if ( NOT DEFINED ${MN}_PROJECTNAME )
set( PROJECTNAME ${CMAKE_PROJECT_NAME} ) set( ${MN}_PROJECTNAME ${CMAKE_PROJECT_NAME} )
endif() endif()
string(TOLOWER ${PROJECTNAME} LONAME) string(TOLOWER ${${MN}_PROJECTNAME} LONAME)
string(TOUPPER ${PROJECTNAME} UPNAME) string(TOUPPER ${${MN}_PROJECTNAME} UPNAME)
# Create .sh file # Create .sh file
# --------------- # ---------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment