Skip to content
Snippets Groups Projects
Commit 85a79a7f authored by Pierre Aubert's avatar Pierre Aubert
Browse files

Ready for version 1.5.4 (update find_package in pull extra modules as quiet)

parent 3228a31d
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 2.8)
add_subdirectory(cmake)
phoenix_base_project("PhoenixFileBinaryAnalyzer" "1.5.3"
phoenix_base_project("PhoenixFileBinaryAnalyzer" "1.5.4"
"Programm to automatically get offset of data attribute in abstract binary data"
"https://gitlab.in2p3.fr/CTA-LAPP/PHOENIX_LIBS/PhoenixFileBinaryAnalyzer")
......
......@@ -76,7 +76,7 @@ function(pull_extra_module packageName urlGitToPackage)
get_extra_module(${packageName} ${urlGitToPackage})
else()
# Try to find the package
find_package(${packageName})
find_package(${packageName} QUIET)
string(TOUPPER ${packageName} UPPER_PACKAGE_NAME)
if(${${UPPER_PACKAGE_NAME}_FOUND})
# The package is found, we check if the module exist
......@@ -99,7 +99,7 @@ endfunction(pull_extra_module)
# packageName : name of the package to be found (classic parameter of find_package)
# urlGitToPackage : url of the git repository to be used to fetch it if it is not found
function(phoenix_find_package packageName urlGitToPackage)
find_package(${packageName})
find_package(${packageName} QUIET)
string(TOUPPER ${packageName} UPPER_PACKAGE_NAME)
message(STATUS "FIND variable ${packageName}_FOUND = ${${UPPER_PACKAGE_NAME}_FOUND}")
if(NOT ${${UPPER_PACKAGE_NAME}_FOUND})
......@@ -112,7 +112,7 @@ function(phoenix_find_package packageName urlGitToPackage)
WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
message(STATUS "End of ${basePackageDirName} installation")
find_package(${packageName})
find_package(${packageName} QUIET)
else(urlGitToPackage)
message(FATAL_ERROR "Package ${packageName} not found and no url to fetch it")
endif(urlGitToPackage)
......
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