Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [glaberge@beowulf00 HPX]$ cat *
- # Copyright (c) 2014 Thomas Heller
- # Copyright (c) 2015 Andreas Schaefer
- #
- # Distributed under the Boost Software License, Version 1.0. (See accompanying
- # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- # include exported targets if not already defined
- if (NOT TARGET hpx)
- include("${CMAKE_CURRENT_LIST_DIR}/HPXTargets.cmake")
- endif()
- # include HPX cmake utilities
- include("${CMAKE_CURRENT_LIST_DIR}/HPXMacros.cmake")
- get_filename_component(_hpx_root_dir "${CMAKE_CURRENT_LIST_DIR}/../../.." ABSOLUTE)
- set(HPX_INCLUDE_DIRS "/home/glaberge/hpx;/home/glaberge/hpx/my_hpx_build;/home/glaberge/hpx/examples;/home/glaberge/hpx/tests;/opt/boost/1.67.0-clang6.0.0/release;/usr/include")
- set(HPX_LIBRARIES "general;hpx;general;hpx_init;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so")
- set(HPX_LIBRARY_DIR "")
- set(HPX_VERSION_STRING "1.2.0")
- set(HPX_MAJOR_VERSION 1)
- set(HPX_MINOR_VERSION 2)
- set(HPX_PATCH_LEVEL 0)
- set(HPX_PREFIX "${_hpx_root_dir}")
- set(HPX_DEBUG_POSTFIX "d")
- set(HPX_BUILD_TYPE "Release")
- set(HPX_GIT_COMMIT "5e24f85a5fac84c541787c8bb2de96ca0731614e" CACHE STRING "Revision of HPX from Git")
- set(HPX_C_COMPILER "/opt/mn/clang/6.0.0/bin/clang" CACHE STRING "C compiler for HPX")
- set(HPX_C_COMPILER_ID "Clang" CACHE STRING "C compiler id for HPX")
- set(HPX_C_COMPILER_VERSION "6.0.0" CACHE STRING "C compiler version for HPX")
- set(HPX_CXX_COMPILER "/opt/mn/clang/6.0.0/bin/clang++" CACHE STRING "CXX compiler for HPX")
- set(HPX_CXX_COMPILER_ID "Clang" CACHE STRING "CXX compiler id for HPX")
- set(HPX_CXX_COMPILER_VERSION "6.0.0" CACHE STRING "CXX compiler version for HPX")
- set(HPX_Fortran_COMPILER "" CACHE STRING "Fortran compiler for HPX")
- set(HPX_Fortran_COMPILER_ID "" CACHE STRING "Fortran compiler id for HPX")
- set(HPX_Fortran_COMPILER_VERSION "" CACHE STRING "Fortran compiler version for HPX")
- set(HPX_BOOST_ROOT "")
- set(HPX_BOOST_LIBRARIES "/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so")
- set(HPX_WITH_PSEUDO_DEPENDENCIES ON)
- set(HPX_WITH_STATIC_LINKING OFF)
- set(HPX_WITH_MALLOC_DEFAULT tcmalloc)
- set(HPX_WITH_PARCELPORT_TCP ON)
- set(HPX_WITH_PARCELPORT_MPI OFF)
- set(HPX_WITH_APEX OFF)
- if(MSVC)
- set(HPX_WITH_VCPKG )
- endif()
- if(NOT HPX_CMAKE_LOGLEVEL)
- set(HPX_CMAKE_LOGLEVEL "WARN")
- endif()
- if(NOT LIB)
- set(LIB "lib")
- endif()
- enable_language(C)
- hpx_check_compiler_compatibility()
- hpx_check_boost_compatibility()
- hpx_setup_allocator()
- if(NOT DEFINED ${CMAKE_FIND_PACKAGE_NAME}_FOUND)
- set(${CMAKE_FIND_PACKAGE_NAME}_FOUND true)
- endif()
- # Set variables to enable cuda/nvcc or cuda/clang when using add_hpx_executable()
- set(HPX_WITH_CUDA OFF)
- set(HPX_WITH_CUDA_CLANG OFF)
- set(HPX_CUDA_CLANG_FLAGS )
- # Set variables used by nvcc
- if(HPX_WITH_CUDA)
- find_package(CUDA REQUIRED)
- set(HPX_WITH_CUDA_CLANG OFF)
- set(CUDA_SEPARABLE_COMPILATION ON)
- set(CUDA_NVCC_FLAGS )
- set(HPX_CUDA_CLANG_FLAGS )
- cuda_include_directories("/home/glaberge/hpx;/home/glaberge/hpx/my_hpx_build;/home/glaberge/hpx/examples;/home/glaberge/hpx/tests;/opt/boost/1.67.0-clang6.0.0/release;/usr/include")
- endif()
- # This is a basic version file for the Config-mode of find_package().
- # It is used by write_basic_package_version_file() as input file for configure_file()
- # to create a version-file which can be installed along a config.cmake file.
- #
- # The created file sets PACKAGE_VERSION_EXACT if the current version string and
- # the requested version string are exactly the same and it sets
- # PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version.
- # The variable CVF_VERSION must be set before calling configure_file().
- set(PACKAGE_VERSION "1.2.0")
- if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
- set(PACKAGE_VERSION_COMPATIBLE FALSE)
- else()
- set(PACKAGE_VERSION_COMPATIBLE TRUE)
- if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
- set(PACKAGE_VERSION_EXACT TRUE)
- endif()
- endif()
- # if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it:
- if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "")
- return()
- endif()
- # check that the installed version has the same 32/64bit-ness as the one which is currently searching:
- if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8")
- math(EXPR installedBits "8 * 8")
- set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)")
- set(PACKAGE_VERSION_UNSUITABLE TRUE)
- endif()
- # Copyright (c) 2014 Thomas Heller
- # Copyright (c) 2015 Andreas Schäfer
- #
- # Distributed under the Boost Software License, Version 1.0. (See accompanying
- # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "/home/glaberge/hpx/cmake")
- include(HPX_Utils)
- function(hpx_check_compiler_compatibility)
- if(HPX_IGNORE_COMPILER_COMPATIBILITY)
- return()
- endif()
- if(NOT (${CMAKE_CXX_COMPILER_ID} STREQUAL ${HPX_CXX_COMPILER_ID}
- AND ${CMAKE_CXX_COMPILER_VERSION} STREQUAL ${HPX_CXX_COMPILER_VERSION}))
- set(MESSAGE "Compilers do not match. In order to compile HPX application it is"
- " recommended to use the same compiler as you did for HPX. "
- "HPX_CXX_COMPILER=${HPX_CXX_COMPILER}, "
- "CMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}. "
- "HPX_CXX_COMPILER_ID=${HPX_CXX_COMPILER_ID}, "
- "CMAKE_CXX_COMPILER_ID=${CMAKE_CXX_COMPILER_ID}. "
- "To disable this message set HPX_IGNORE_COMPILER_COMPATIBILITY to On."
- )
- if (HPX_FIND_REQUIRED)
- hpx_error("${MESSAGE}")
- else()
- hpx_warn("${MESSAGE}")
- set(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE "${MESSAGE}" PARENT_SCOPE)
- set(${CMAKE_FIND_PACKAGE_NAME}_FOUND False PARENT_SCOPE)
- endif()
- endif()
- endfunction()
- function(hpx_check_boost_compatibility)
- if(HPX_IGNORE_BOOST_COMPATIBILITY)
- return()
- endif()
- if(NOT DEFINED BOOST_ROOT)
- return()
- endif()
- # make sure paths are tested even if not string identical
- get_filename_component(PATH1 ${HPX_BOOST_ROOT} ABSOLUTE)
- get_filename_component(PATH2 ${BOOST_ROOT} ABSOLUTE)
- if(NOT PATH1 STREQUAL PATH2)
- hpx_error("The specified BOOST_ROOT differs from what has been used when"
- " configuring and building HPX. Please use the same Boost "
- "versions. HPX boost is ${HPX_BOOST_ROOT} and users is ${BOOST_ROOT}. "
- "To disable this message set HPX_IGNORE_BOOST_COMPATIBILITY On."
- )
- endif()
- endfunction()
- function(hpx_setup_allocator)
- if(HPX_DISABLE_CUSTOM_ALLOCATOR)
- return()
- endif()
- if(DEFINED HPX_WITH_MALLOC)
- string(TOUPPER "${HPX_WITH_MALLOC}" HPX_MALLOC_UPPER)
- string(TOUPPER "${HPX_WITH_MALLOC_DEFAULT}" HPX_MALLOC_DEFAULT_UPPER)
- if(NOT HPX_MALLOC_UPPER STREQUAL HPX_MALLOC_DEFAULT_UPPER)
- hpx_error("The specified allocators do not match. This Project is configured with ${HPX_WITH_MALLOC} and HPX was configured with ${HPX_WITH_MALLOC_DEFAULT}.")
- endif()
- endif()
- set(HPX_WITH_MALLOC ${HPX_WITH_MALLOC_DEFAULT} CACHE STRING "Define which allocator should be linked in. Options are: system, tcmalloc, jemalloc, tbbmalloc, and custom (default is: tcmalloc)")
- include(HPX_SetupAllocator)
- endfunction()
- # Generated by CMake
- if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.5)
- message(FATAL_ERROR "CMake >= 2.6.0 required")
- endif()
- cmake_policy(PUSH)
- cmake_policy(VERSION 2.6)
- #----------------------------------------------------------------
- # Generated CMake target import file.
- #----------------------------------------------------------------
- # Commands may need to know the format version.
- set(CMAKE_IMPORT_FILE_VERSION 1)
- # Protect against multiple inclusion, which would fail when already imported targets are added once more.
- set(_targetsDefined)
- set(_targetsNotDefined)
- set(_expectedTargets)
- foreach(_expectedTarget component_storage_component unordered_component partitioned_vector_component iostreams_component io_counters_component memory_component process_component hpx hpx_init accumulator_component template_accumulator_component template_function_accumulator_component cancelable_action_component jacobi_component_component nqueen_component sine_component random_mem_access_component startup_shutdown_component throttle_component simple_central_tuplespace_component parcel_coalescing_lib)
- list(APPEND _expectedTargets ${_expectedTarget})
- if(NOT TARGET ${_expectedTarget})
- list(APPEND _targetsNotDefined ${_expectedTarget})
- endif()
- if(TARGET ${_expectedTarget})
- list(APPEND _targetsDefined ${_expectedTarget})
- endif()
- endforeach()
- if("${_targetsDefined}" STREQUAL "${_expectedTargets}")
- unset(_targetsDefined)
- unset(_targetsNotDefined)
- unset(_expectedTargets)
- set(CMAKE_IMPORT_FILE_VERSION)
- cmake_policy(POP)
- return()
- endif()
- if(NOT "${_targetsDefined}" STREQUAL "")
- message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_targetsDefined}\nTargets not yet defined: ${_targetsNotDefined}\n")
- endif()
- unset(_targetsDefined)
- unset(_targetsNotDefined)
- unset(_expectedTargets)
- # Create imported target component_storage_component
- add_library(component_storage_component SHARED IMPORTED)
- set_target_properties(component_storage_component PROPERTIES
- INTERFACE_LINK_LIBRARIES "hpx;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so;unordered_component"
- )
- # Create imported target unordered_component
- add_library(unordered_component SHARED IMPORTED)
- set_target_properties(unordered_component PROPERTIES
- INTERFACE_LINK_LIBRARIES "hpx;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so"
- )
- # Create imported target partitioned_vector_component
- add_library(partitioned_vector_component SHARED IMPORTED)
- set_target_properties(partitioned_vector_component PROPERTIES
- INTERFACE_LINK_LIBRARIES "hpx;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so"
- )
- # Create imported target iostreams_component
- add_library(iostreams_component SHARED IMPORTED)
- set_target_properties(iostreams_component PROPERTIES
- INTERFACE_LINK_LIBRARIES "hpx;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so"
- )
- # Create imported target io_counters_component
- add_library(io_counters_component SHARED IMPORTED)
- set_target_properties(io_counters_component PROPERTIES
- INTERFACE_LINK_LIBRARIES "hpx;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so"
- )
- # Create imported target memory_component
- add_library(memory_component SHARED IMPORTED)
- set_target_properties(memory_component PROPERTIES
- INTERFACE_LINK_LIBRARIES "hpx;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so"
- )
- # Create imported target process_component
- add_library(process_component SHARED IMPORTED)
- set_target_properties(process_component PROPERTIES
- INTERFACE_LINK_LIBRARIES "hpx;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so"
- )
- # Create imported target hpx
- add_library(hpx SHARED IMPORTED)
- set_target_properties(hpx PROPERTIES
- INTERFACE_COMPILE_DEFINITIONS "\$<\$<CONFIG:Debug>:_DEBUG>;\$<\$<CONFIG:Debug>:_DEBUG>;\$<\$<CONFIG:Debug>:DEBUG>;\$<\$<CONFIG:Debug>:DEBUG>;\$<\$<CONFIG:Release>:HPX_DISABLE_ASSERTS>;\$<\$<CONFIG:Release>:HPX_DISABLE_ASSERTS>;\$<\$<CONFIG:RelWithDebInfo>:HPX_DISABLE_ASSERTS>;\$<\$<CONFIG:RelWithDebInfo>:HPX_DISABLE_ASSERTS>;\$<\$<CONFIG:MinSizeRelease>:HPX_DISABLE_ASSERTS>;\$<\$<CONFIG:MinSizeRelease>:HPX_DISABLE_ASSERTS>;\$<\$<CONFIG:Release>:BOOST_DISABLE_ASSERTS>;\$<\$<CONFIG:Release>:BOOST_DISABLE_ASSERTS>;\$<\$<CONFIG:RelWithDebInfo>:BOOST_DISABLE_ASSERTS>;\$<\$<CONFIG:RelWithDebInfo>:BOOST_DISABLE_ASSERTS>;\$<\$<CONFIG:MinSizeRelease>:BOOST_DISABLE_ASSERTS>;\$<\$<CONFIG:MinSizeRelease>:BOOST_DISABLE_ASSERTS>"
- INTERFACE_COMPILE_OPTIONS "-std=c++17;-std=c++17"
- INTERFACE_LINK_LIBRARIES "dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so"
- )
- # Create imported target hpx_init
- add_library(hpx_init STATIC IMPORTED)
- set_target_properties(hpx_init PROPERTIES
- INTERFACE_COMPILE_DEFINITIONS "\$<\$<CONFIG:Debug>:_DEBUG>;\$<\$<CONFIG:Debug>:DEBUG>;\$<\$<CONFIG:Release>:HPX_DISABLE_ASSERTS>;\$<\$<CONFIG:RelWithDebInfo>:HPX_DISABLE_ASSERTS>;\$<\$<CONFIG:MinSizeRelease>:HPX_DISABLE_ASSERTS>;\$<\$<CONFIG:Release>:BOOST_DISABLE_ASSERTS>;\$<\$<CONFIG:RelWithDebInfo>:BOOST_DISABLE_ASSERTS>;\$<\$<CONFIG:MinSizeRelease>:BOOST_DISABLE_ASSERTS>"
- INTERFACE_COMPILE_OPTIONS "-std=c++17"
- )
- # Create imported target accumulator_component
- add_library(accumulator_component SHARED IMPORTED)
- set_target_properties(accumulator_component PROPERTIES
- INTERFACE_LINK_LIBRARIES "hpx;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so"
- )
- # Create imported target template_accumulator_component
- add_library(template_accumulator_component SHARED IMPORTED)
- set_target_properties(template_accumulator_component PROPERTIES
- INTERFACE_LINK_LIBRARIES "hpx;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so"
- )
- # Create imported target template_function_accumulator_component
- add_library(template_function_accumulator_component SHARED IMPORTED)
- set_target_properties(template_function_accumulator_component PROPERTIES
- INTERFACE_LINK_LIBRARIES "hpx;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so"
- )
- # Create imported target cancelable_action_component
- add_library(cancelable_action_component SHARED IMPORTED)
- set_target_properties(cancelable_action_component PROPERTIES
- INTERFACE_LINK_LIBRARIES "hpx;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so"
- )
- # Create imported target jacobi_component_component
- add_library(jacobi_component_component SHARED IMPORTED)
- set_target_properties(jacobi_component_component PROPERTIES
- INTERFACE_LINK_LIBRARIES "hpx;iostreams_component;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so"
- )
- # Create imported target nqueen_component
- add_library(nqueen_component SHARED IMPORTED)
- set_target_properties(nqueen_component PROPERTIES
- INTERFACE_LINK_LIBRARIES "hpx;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so"
- )
- # Create imported target sine_component
- add_library(sine_component SHARED IMPORTED)
- set_target_properties(sine_component PROPERTIES
- INTERFACE_LINK_LIBRARIES "hpx;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so"
- )
- # Create imported target random_mem_access_component
- add_library(random_mem_access_component SHARED IMPORTED)
- set_target_properties(random_mem_access_component PROPERTIES
- INTERFACE_LINK_LIBRARIES "hpx;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so"
- )
- # Create imported target startup_shutdown_component
- add_library(startup_shutdown_component SHARED IMPORTED)
- set_target_properties(startup_shutdown_component PROPERTIES
- INTERFACE_LINK_LIBRARIES "hpx;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so"
- )
- # Create imported target throttle_component
- add_library(throttle_component SHARED IMPORTED)
- set_target_properties(throttle_component PROPERTIES
- INTERFACE_LINK_LIBRARIES "hpx;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so"
- )
- # Create imported target simple_central_tuplespace_component
- add_library(simple_central_tuplespace_component SHARED IMPORTED)
- set_target_properties(simple_central_tuplespace_component PROPERTIES
- INTERFACE_LINK_LIBRARIES "hpx;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so"
- )
- # Create imported target parcel_coalescing_lib
- add_library(parcel_coalescing_lib SHARED IMPORTED)
- set_target_properties(parcel_coalescing_lib PROPERTIES
- INTERFACE_LINK_LIBRARIES "hpx;dl;rt;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libpthread.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_atomic.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_filesystem.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_program_options.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_regex.so;/opt/boost/1.67.0-clang6.0.0/release/lib/libboost_system.so;/usr/lib64/libtcmalloc_minimal.so;/usr/lib64/libhwloc.so"
- )
- # Import target "component_storage_component" for configuration "Release"
- set_property(TARGET component_storage_component APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(component_storage_component PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/libhpx_component_storage.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx_component_storage.so.1"
- )
- # Import target "unordered_component" for configuration "Release"
- set_property(TARGET unordered_component APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(unordered_component PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/libhpx_unordered.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx_unordered.so.1"
- )
- # Import target "partitioned_vector_component" for configuration "Release"
- set_property(TARGET partitioned_vector_component APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(partitioned_vector_component PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/libhpx_partitioned_vector.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx_partitioned_vector.so.1"
- )
- # Import target "iostreams_component" for configuration "Release"
- set_property(TARGET iostreams_component APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(iostreams_component PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/libhpx_iostreams.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx_iostreams.so.1"
- )
- # Import target "io_counters_component" for configuration "Release"
- set_property(TARGET io_counters_component APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(io_counters_component PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/hpx/libhpx_io_counters.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx_io_counters.so.1"
- )
- # Import target "memory_component" for configuration "Release"
- set_property(TARGET memory_component APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(memory_component PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/hpx/libhpx_memory.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx_memory.so.1"
- )
- # Import target "process_component" for configuration "Release"
- set_property(TARGET process_component APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(process_component PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/libhpx_process.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx_process.so.1"
- )
- # Import target "hpx" for configuration "Release"
- set_property(TARGET hpx APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(hpx PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/libhpx.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx.so.1"
- )
- # Import target "hpx_init" for configuration "Release"
- set_property(TARGET hpx_init APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(hpx_init PROPERTIES
- IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "CXX"
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/libhpx_init.a"
- )
- # Import target "accumulator_component" for configuration "Release"
- set_property(TARGET accumulator_component APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(accumulator_component PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/libhpx_accumulator.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx_accumulator.so.1"
- )
- # Import target "template_accumulator_component" for configuration "Release"
- set_property(TARGET template_accumulator_component APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(template_accumulator_component PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/libhpx_template_accumulator.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx_template_accumulator.so.1"
- )
- # Import target "template_function_accumulator_component" for configuration "Release"
- set_property(TARGET template_function_accumulator_component APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(template_function_accumulator_component PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/libhpx_template_function_accumulator.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx_template_function_accumulator.so.1"
- )
- # Import target "cancelable_action_component" for configuration "Release"
- set_property(TARGET cancelable_action_component APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(cancelable_action_component PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/libhpx_cancelable_action.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx_cancelable_action.so.1"
- )
- # Import target "jacobi_component_component" for configuration "Release"
- set_property(TARGET jacobi_component_component APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(jacobi_component_component PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/libhpx_jacobi_component.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx_jacobi_component.so.1"
- )
- # Import target "nqueen_component" for configuration "Release"
- set_property(TARGET nqueen_component APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(nqueen_component PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/libhpx_nqueen.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx_nqueen.so.1"
- )
- # Import target "sine_component" for configuration "Release"
- set_property(TARGET sine_component APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(sine_component PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/hpx/libhpx_sine.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx_sine.so.1"
- )
- # Import target "random_mem_access_component" for configuration "Release"
- set_property(TARGET random_mem_access_component APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(random_mem_access_component PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/libhpx_random_mem_access.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx_random_mem_access.so.1"
- )
- # Import target "startup_shutdown_component" for configuration "Release"
- set_property(TARGET startup_shutdown_component APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(startup_shutdown_component PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/libhpx_startup_shutdown.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx_startup_shutdown.so.1"
- )
- # Import target "throttle_component" for configuration "Release"
- set_property(TARGET throttle_component APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(throttle_component PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/libhpx_throttle.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx_throttle.so.1"
- )
- # Import target "simple_central_tuplespace_component" for configuration "Release"
- set_property(TARGET simple_central_tuplespace_component APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(simple_central_tuplespace_component PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/libhpx_simple_central_tuplespace.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx_simple_central_tuplespace.so.1"
- )
- # Import target "parcel_coalescing_lib" for configuration "Release"
- set_property(TARGET parcel_coalescing_lib APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
- set_target_properties(parcel_coalescing_lib PROPERTIES
- IMPORTED_LOCATION_RELEASE "/home/glaberge/hpx/my_hpx_build/lib/hpx/libhpx_parcel_coalescing.so.1.2.0"
- IMPORTED_SONAME_RELEASE "libhpx_parcel_coalescing.so.1"
- )
- # This file does not depend on other imported targets which have
- # been exported from the same project but in a separate export set.
- # Commands beyond this point should not need to know the version.
- set(CMAKE_IMPORT_FILE_VERSION)
- cmake_policy(POP)
Advertisement
Add Comment
Please, Sign In to add comment