message(FATAL_ERROR "-DPATH_FILE must be present in the command line and point to a file that specify the paths and settings to use in the build. A default one is defined in cmake/Paths.cmake; feel free to copy and adapt it to your needs.")
endif()
include(${PATH_FILE})
# All --all_load in target_link_libraries of executables if STATIC library are chose.
if(LIBRARY_TYPE MATCHES STATIC)
set(ALL_LOAD_FLAG "-all_load")
else()
set(ALL_LOAD_FLAG "")
endif()
#MESSAGE("ALL_LOAD_FLAG: ${ALL_LOAD_FLAG}")
MESSAGE("Generated with config types: ${CMAKE_CONFIGURATION_TYPES}")