# pwimp_paths.cmake -- # # Define paths of the postwimp examples project. # # Copyright (c) 2014-2016 LIG/IIHM, University of Grenoble Alpes # # See the file "gil_LicenseTerms.txt" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # Created on Oct. 29th, 2014 (FB) Std_Header() # Execute only once. if(NOT PWIMP_PATHS_ONCE) set(PWIMP_PATHS_ONCE 1) # Define the root of postwimp example project. get_filename_component(PWIMP_ROOT "${CUR_DIR}/.." ABSOLUTE) # Define the path of the gilpw library. set(PWIMP_INC_DIR "${PWIMP_ROOT}/include" ) set(PWIMP_LIB_DIR "${PWIMP_ROOT}/lib/${PLATFORM}" ) set(GILPW_TARGET_NAME "gilpw") set(GILPW_LIB "${PWIMP_LIB_DIR}/${SO_PREFIX}${GILPW_TARGET_NAME}${SO_SUFFIX}") message(STATUS "${MSG_INDENT} PWIMP_ROOT >${PWIMP_ROOT}<" ) message(STATUS "${MSG_INDENT} PWIMP_INC_DIR >${PWIMP_INC_DIR}<" ) message(STATUS "${MSG_INDENT} PWIMP_LIB_DIR >${PWIMP_LIB_DIR}<" ) endif(NOT PWIMP_PATHS_ONCE)