Branch: refs/heads/to_target_based_directives
  Home:   https://github.com/STEllAR-GROUP/hpx
  Commit: 5ec5bf3e5a1fb17c9d4d14bec22fb86219cb92c8
      
https://github.com/STEllAR-GROUP/hpx/commit/5ec5bf3e5a1fb17c9d4d14bec22fb86219cb92c8
  Author: Christopher Hinz <chin...@qubusproject.org>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M CMakeLists.txt
    M cmake/HPX_AddCompileTest.cmake
    M cmake/HPX_SetupAllocator.cmake
    M cmake/HPX_SetupBoost.cmake
    M cmake/HPX_SetupBoostSIMD.cmake
    M cmake/HPX_SetupVc.cmake
    M components/iostreams/CMakeLists.txt
    M components/performance_counters/papi/CMakeLists.txt
    M components/process/CMakeLists.txt
    M examples/compute/cuda/CMakeLists.txt
    M examples/hello_world_component/CMakeLists.txt
    M examples/interpolate1d/CMakeLists.txt
    M examples/interpolate1d/create_testdata.cpp
    M examples/interpolate1d/interpolate1d/CMakeLists.txt
    M examples/interpolate1d/interpolate1d/read_values.hpp
    M examples/qt/CMakeLists.txt
    M examples/quickstart/CMakeLists.txt
    M examples/sheneos/CMakeLists.txt
    M examples/sheneos/sheneos/read_values.hpp
    M libs/config/CMakeLists.txt
    M libs/segmented_algorithms/tests/unit/CMakeLists.txt
    M libs/topology/CMakeLists.txt
    M plugins/binary_filter/bzip2/CMakeLists.txt
    M plugins/binary_filter/snappy/CMakeLists.txt
    M plugins/binary_filter/zlib/CMakeLists.txt
    M plugins/parcel/coalescing/CMakeLists.txt
    M src/CMakeLists.txt
    M tests/headers/CMakeLists.txt
    M tests/performance/local/CMakeLists.txt
    M tests/performance/local/htts_v2/CMakeLists.txt
    M tests/performance/network/network_storage/CMakeLists.txt
    M tests/regressions/computeapi/CMakeLists.txt
    M tests/regressions/lcos/CMakeLists.txt
    M tests/unit/computeapi/host/CMakeLists.txt
    M tests/unit/lcos/shared_mutex/CMakeLists.txt
    M tests/unit/threads/CMakeLists.txt
    M tests/unit/topology/CMakeLists.txt
    M tools/inspect/CMakeLists.txt

  Log Message:
  -----------
  Replace 'include_directories' with 'target_include_directories'

While this is the overarching goal of the commit, it also
replaces other constructs to be more in line with modern CMake.
In particular, it introduces imported targets for most external
libraries.

In addition, every component of HPX now only depends on the libraries
which are actually required and only propagates them to
downstream targets if necessary. Notably, every required component
of Boost is now explicitly mentioned as a distinct dependency.

The only remaining usage of 'include_directories' is from the
parcelports. As this part of the build system requires a thorough
overhaul, I will postpone their replacement to a future PR.


  Commit: ea9e799a593fbfdd791e19d29c0ee5df3905ac3d
      
https://github.com/STEllAR-GROUP/hpx/commit/ea9e799a593fbfdd791e19d29c0ee5df3905ac3d
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M CMakeLists.txt
    M cmake/HPX_AddModule.cmake
    M examples/interpolate1d/CMakeLists.txt
    M src/CMakeLists.txt

  Log Message:
  -----------
  Remove the last include_directories for generated headers


  Commit: 6c8d5561f15c3760bb43d770bc504a68b5735c53
      
https://github.com/STEllAR-GROUP/hpx/commit/6c8d5561f15c3760bb43d770bc504a68b5735c53
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M cmake/HPX_AddModule.cmake
    M src/CMakeLists.txt

  Log Message:
  -----------
  [Modules] Fix wrong generated header install path


  Commit: 431be62d585d7be468b33c44369f20fe05eeab31
      
https://github.com/STEllAR-GROUP/hpx/commit/431be62d585d7be468b33c44369f20fe05eeab31
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M cmake/HPX_SetupBoost.cmake

  Log Message:
  -----------
  Remove unused boost parameter


  Commit: 2c8c419a80b54597f66d94a853542fffba4b1d80
      
https://github.com/STEllAR-GROUP/hpx/commit/2c8c419a80b54597f66d94a853542fffba4b1d80
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M cmake/HPX_SetupBoost.cmake
    M cmake/templates/HPXConfig.cmake.in
    M src/CMakeLists.txt

  Log Message:
  -----------
  Add hpx::boost setup to HPXTargets to fix external HPX find_package


  Commit: b84b4610b5dbb73877d6629074b0a76c1a1f043b
      
https://github.com/STEllAR-GROUP/hpx/commit/b84b4610b5dbb73877d6629074b0a76c1a1f043b
  Author: Christopher Hinz <chin...@qubusproject.org>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M cmake/HPX_GeneratePackage.cmake
    A cmake/HPX_GeneratePackageUtils.cmake
    M cmake/templates/hpx_application.pc.in
    R cmake/templates/hpx_application_debug.pc.in
    R cmake/templates/hpx_bazel_defs_debug.bzl.in
    M cmake/templates/hpx_component.pc.in
    R cmake/templates/hpx_component_debug.pc.in
    M cmake/templates/hpxcxx.in
    M components/CMakeLists.txt
    M examples/hello_world_component/CMakeLists.txt
    M examples/hello_world_component/Makefile
    M src/CMakeLists.txt

  Log Message:
  -----------
  Refactor the generation of the package config files

Previously, HPX used the global variables and directory properties
to construct the package config files (CMake, pkgconf and Bazel),
which would leads to inconsistencies if the requirements was only
added to a specific target.

The new version of the code computes the settings
for the non-CMake config files by walking the dependency graph
starting from a suitable target, e.g. hpx::application, to
construct the transitive usage requirements for a specific setup.
Special CMake constructs like generator expressions are handle
according to their semantics if necessary. Since CMake now solely
relies on the interface properties of the targets, the generated
config files are always in sync with the build system.

Note: The current version of this commit is highly experimental and
requires a major clean-up. Currently, it does not generate the config
files for Bazel.

Add targets suitable for setting up HPX applications and components
The targets bundle the required targets and the additional
usage requirements which are necessary to build an HPX
application or component.


  Commit: aaf623b258d3a2048522934b91423081f09f809a
      
https://github.com/STEllAR-GROUP/hpx/commit/aaf623b258d3a2048522934b91423081f09f809a
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M cmake/HPX_GeneratePackage.cmake
    R cmake/templates/hpx_bazel_defs.bzl.in
    M src/CMakeLists.txt

  Log Message:
  -----------
  Remove all Bazel build related files (unused)


  Commit: 96f8aef340ceb1dad2a3b184bb20471edfaa6207
      
https://github.com/STEllAR-GROUP/hpx/commit/96f8aef340ceb1dad2a3b184bb20471edfaa6207
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M src/CMakeLists.txt

  Log Message:
  -----------
  Add missing debug compile definition for hpx


  Commit: 69bafe4f90627e8a6ab311eeb153b90c231ca997
      
https://github.com/STEllAR-GROUP/hpx/commit/69bafe4f90627e8a6ab311eeb153b90c231ca997
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M CMakeLists.txt
    R cmake/HPX_SetupBoostSIMD.cmake
    M cmake/templates/conf.py.in
    M hpx/runtime/serialization/datapar.hpp
    R hpx/runtime/serialization/detail/boost_simd.hpp
    M libs/execution/CMakeLists.txt
    R 
libs/execution/include/hpx/parallel/traits/detail/boost_simd/vector_pack_alignment_size.hpp
    R 
libs/execution/include/hpx/parallel/traits/detail/boost_simd/vector_pack_count_bits.hpp
    R 
libs/execution/include/hpx/parallel/traits/detail/boost_simd/vector_pack_load_store.hpp
    R 
libs/execution/include/hpx/parallel/traits/detail/boost_simd/vector_pack_type.hpp
    M libs/execution/include/hpx/parallel/traits/vector_pack_alignment_size.hpp
    M libs/execution/include/hpx/parallel/traits/vector_pack_count_bits.hpp
    M libs/execution/include/hpx/parallel/traits/vector_pack_load_store.hpp
    M libs/execution/include/hpx/parallel/traits/vector_pack_type.hpp
    M src/CMakeLists.txt

  Log Message:
  -----------
  Remove BoostSIMD (unused)


  Commit: 6405224fc5bdf5ec41076504df05d09edb2d13ca
      
https://github.com/STEllAR-GROUP/hpx/commit/6405224fc5bdf5ec41076504df05d09edb2d13ca
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M CMakeLists.txt
    M cmake/HPX_SetupAllocator.cmake
    A cmake/HPX_SetupAmplifier.cmake
    A cmake/HPX_SetupApex.cmake
    A cmake/HPX_SetupGooglePerfTools.cmake
    A cmake/HPX_SetupHpxmp.cmake
    A cmake/HPX_SetupHwloc.cmake
    A cmake/HPX_SetupPapi.cmake
    A cmake/HPX_SetupValgrind.cmake
    M tests/headers/CMakeLists.txt

  Log Message:
  -----------
  Move package setup code to cmake modules


  Commit: bc99e3b3f8f23f0b1fa8ca08971b0509fb236005
      
https://github.com/STEllAR-GROUP/hpx/commit/bc99e3b3f8f23f0b1fa8ca08971b0509fb236005
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M tests/unit/build/CMakeLists.txt

  Log Message:
  -----------
  Add the pseudo dependency core to tests.unit.build


  Commit: 3b8289b39ad51ca23d45bd35f4dc38fda9c6bb4b
      
https://github.com/STEllAR-GROUP/hpx/commit/3b8289b39ad51ca23d45bd35f4dc38fda9c6bb4b
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M CMakeLists.txt

  Log Message:
  -----------
  Remove the use of hpx_include for SetFullRpath

The goal is to remove some of the hpx functions to simplify the
CMakeLists.txt


  Commit: dbc18518de65963e0f21439ce32ef026fc747329
      
https://github.com/STEllAR-GROUP/hpx/commit/dbc18518de65963e0f21439ce32ef026fc747329
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M CMakeLists.txt
    M cmake/HPX_AddModule.cmake
    M cmake/HPX_SetupAllocator.cmake
    R cmake/HPX_SetupAmplifier.cmake
    R cmake/templates/config_defines.hpp.in
    R cmake/templates/config_version.hpp.in
    M libs/config/CMakeLists.txt
    A libs/config/cmake/templates/config_defines.hpp.in
    A libs/config/cmake/templates/config_version.hpp.in

  Log Message:
  -----------
  Move generated config/version.hpp,defines.hpp into the config module


  Commit: 6a10ba779f467949d7e6f69ee6c7ef82652322e6
      
https://github.com/STEllAR-GROUP/hpx/commit/6a10ba779f467949d7e6f69ee6c7ef82652322e6
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M tests/unit/lcos/shared_mutex/CMakeLists.txt

  Log Message:
  -----------
  Fix PARAMETERS in shared_mutex tests + add DEPENDENCIES


  Commit: c5236884601b4765294c7a54aab088debfb800aa
      
https://github.com/STEllAR-GROUP/hpx/commit/c5236884601b4765294c7a54aab088debfb800aa
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M cmake/HPX_SetupAllocator.cmake
    M cmake/HPX_SetupApex.cmake
    M cmake/HPX_SetupBoost.cmake
    M cmake/HPX_SetupGooglePerfTools.cmake
    M cmake/HPX_SetupHwloc.cmake
    M cmake/HPX_SetupPapi.cmake
    M cmake/HPX_SetupValgrind.cmake
    M src/CMakeLists.txt

  Log Message:
  -----------
  Fix compatibility with cmake < 3.11


  Commit: 565f2c065dfe10736a5f967b340b2c2ba99dae86
      
https://github.com/STEllAR-GROUP/hpx/commit/565f2c065dfe10736a5f967b340b2c2ba99dae86
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M CMakeLists.txt
    M plugins/parcelport/mpi/CMakeLists.txt
    M plugins/parcelport/tcp/CMakeLists.txt
    M plugins/parcelport/verbs/CMakeLists.txt

  Log Message:
  -----------
  Move the PARCELPORT defines in the CMakeLists.txt

We moved the global config/define inside the config module, so we
are now adding the defines before we start configuring modules.


  Commit: c643eac2c2bb74c1737ab618ed06f5f5d65205e4
      
https://github.com/STEllAR-GROUP/hpx/commit/c643eac2c2bb74c1737ab618ed06f5f5d65205e4
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M .travis.yml

  Log Message:
  -----------
  Increases the number of cores used for travis-ci


  Commit: 0609b04c481a281844111ca99994ce37a0c648d4
      
https://github.com/STEllAR-GROUP/hpx/commit/0609b04c481a281844111ca99994ce37a0c648d4
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M components/iostreams/CMakeLists.txt

  Log Message:
  -----------
  Remove hpx::boost link from the iostream component


  Commit: 9ea7a4876c117d34ce96e517e827d865686608b6
      
https://github.com/STEllAR-GROUP/hpx/commit/9ea7a4876c117d34ce96e517e827d865686608b6
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M CMakeLists.txt
    A cmake/HPX_SetupLibfabric.cmake
    A cmake/HPX_SetupMPI.cmake
    A cmake/HPX_SetupVerbs.cmake
    M plugins/CMakeLists.txt
    M plugins/parcelport/CMakeLists.txt
    M plugins/parcelport/libfabric/CMakeLists.txt
    M plugins/parcelport/mpi/CMakeLists.txt
    M plugins/parcelport/tcp/CMakeLists.txt
    M plugins/parcelport/verbs/CMakeLists.txt
    M tests/headers/CMakeLists.txt

  Log Message:
  -----------
  Simplify cmake in plugins/parcelports


  Commit: 3a283ffcbd4be74c7c1d0f52b64fed961c0f0881
      
https://github.com/STEllAR-GROUP/hpx/commit/3a283ffcbd4be74c7c1d0f52b64fed961c0f0881
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M cmake/HPX_SetupLibfabric.cmake
    M cmake/HPX_SetupMPI.cmake

  Log Message:
  -----------
  Fix compatibility with cmake < 3.11 for mpi and libfabric setup


  Commit: 89e97d338f843c42849228586318d71da379f6d9
      
https://github.com/STEllAR-GROUP/hpx/commit/89e97d338f843c42849228586318d71da379f6d9
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    A cmake/HPX_AddParcelport.cmake
    M cmake/HPX_SetupLibfabric.cmake
    M plugins/parcelport/CMakeLists.txt
    M plugins/parcelport/libfabric/CMakeLists.txt
    M plugins/parcelport/mpi/CMakeLists.txt
    M plugins/parcelport/tcp/CMakeLists.txt
    M plugins/parcelport/verbs/CMakeLists.txt
    M src/CMakeLists.txt

  Log Message:
  -----------
  Make plugins be targets


  Commit: 95cb62e3a021f524d4deae47ebefffe9bf3b0a05
      
https://github.com/STEllAR-GROUP/hpx/commit/95cb62e3a021f524d4deae47ebefffe9bf3b0a05
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M CMakeLists.txt
    M plugins/CMakeLists.txt
    M plugins/binary_filter/CMakeLists.txt
    M plugins/binary_filter/bzip2/CMakeLists.txt
    M plugins/binary_filter/snappy/CMakeLists.txt
    M plugins/binary_filter/zlib/CMakeLists.txt
    M plugins/parcel/CMakeLists.txt
    M plugins/parcel/coalescing/CMakeLists.txt
    M plugins/parcelport/CMakeLists.txt
    M plugins/parcelport/libfabric/CMakeLists.txt
    M plugins/parcelport/mpi/CMakeLists.txt
    M plugins/parcelport/tcp/CMakeLists.txt
    M plugins/parcelport/verbs/CMakeLists.txt
    M src/CMakeLists.txt

  Log Message:
  -----------
  Remove plugins macro to simplify cmake for plugins


  Commit: 5dd2bcb89765d7d498df229202d1d506c429b50a
      
https://github.com/STEllAR-GROUP/hpx/commit/5dd2bcb89765d7d498df229202d1d506c429b50a
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M cmake/HPX_AddParcelport.cmake
    M plugins/parcelport/CMakeLists.txt
    M src/CMakeLists.txt

  Log Message:
  -----------
  Add parcelport_<plugin> target instead of <plugin>


  Commit: 189cc0078da6af058e517fa4fe520e9afa144531
      
https://github.com/STEllAR-GROUP/hpx/commit/189cc0078da6af058e517fa4fe520e9afa144531
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M cmake/FindLibfabric.cmake
    M cmake/FindPMI.cmake
    M cmake/HPX_SetupLibfabric.cmake
    M plugins/parcelport/libfabric/CMakeLists.txt

  Log Message:
  -----------
  Creates imported target for libfabric dependencies


  Commit: df3c543842337b36bfca1f21bc118edb7601d88c
      
https://github.com/STEllAR-GROUP/hpx/commit/df3c543842337b36bfca1f21bc118edb7601d88c
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M CMakeLists.txt
    A cmake/HPX_FilterLibrariesMSVC.cmake

  Log Message:
  -----------
  Fix MSVC cmake bug on INTERFACE IMPORTED libraries


  Commit: 3b04469c5ffdd343fd4656549f49d3a33f66a8b9
      
https://github.com/STEllAR-GROUP/hpx/commit/3b04469c5ffdd343fd4656549f49d3a33f66a8b9
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M CMakeLists.txt
    A cmake/HPX_AddPkgConfigExternalDepsTarget.cmake
    M cmake/HPX_SetupBoost.cmake
    A cmake/HPX_SetupBoostFilesystem.cmake
    A cmake/HPX_SetupBoostProgramOptions.cmake
    M cmake/templates/HPXConfig.cmake.in
    M libs/filesystem/CMakeLists.txt
    M libs/program_options/CMakeLists.txt

  Log Message:
  -----------
  Add library for program_options and filesystem


  Commit: 88c16357b3f65631630ea2225e9e20a94438330b
      
https://github.com/STEllAR-GROUP/hpx/commit/88c16357b3f65631630ea2225e9e20a94438330b
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M cmake/HPX_GeneratePackage.cmake

  Log Message:
  -----------
  Disable pkgconfig generation for MSVC (unused)


  Commit: e7cd67c1fe411fe2e50bca6c989c2205bc3f9642
      
https://github.com/STEllAR-GROUP/hpx/commit/e7cd67c1fe411fe2e50bca6c989c2205bc3f9642
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M cmake/HPX_AddParcelport.cmake

  Log Message:
  -----------
  Add HPX_MODULE_EXPORTS definition to avoid unresolved symbols

Since we don't link the libraries anymore


  Commit: bf37d36df3eeff236d363a4f8d5034a5b06c2b86
      
https://github.com/STEllAR-GROUP/hpx/commit/bf37d36df3eeff236d363a4f8d5034a5b06c2b86
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M CMakeLists.txt
    M libs/algorithms/CMakeLists.txt
    M libs/allocator_support/CMakeLists.txt
    M libs/assertion/CMakeLists.txt
    M libs/cache/CMakeLists.txt
    M libs/collectives/CMakeLists.txt
    M libs/concepts/CMakeLists.txt
    M libs/concurrency/CMakeLists.txt
    M libs/config/CMakeLists.txt
    M libs/datastructures/CMakeLists.txt
    M libs/debugging/CMakeLists.txt
    M libs/errors/CMakeLists.txt
    M libs/execution/CMakeLists.txt
    M libs/filesystem/CMakeLists.txt
    M libs/format/CMakeLists.txt
    M libs/functional/CMakeLists.txt
    M libs/hardware/CMakeLists.txt
    M libs/hashing/CMakeLists.txt
    M libs/iterator_support/CMakeLists.txt
    M libs/logging/CMakeLists.txt
    M libs/plugin/CMakeLists.txt
    M libs/preprocessor/CMakeLists.txt
    M libs/program_options/CMakeLists.txt
    M libs/resiliency/CMakeLists.txt
    M libs/segmented_algorithms/CMakeLists.txt
    M libs/statistics/CMakeLists.txt
    M libs/testing/CMakeLists.txt
    M libs/thread_support/CMakeLists.txt
    M libs/timing/CMakeLists.txt
    M libs/topology/CMakeLists.txt
    M libs/type_support/CMakeLists.txt
    M libs/util/CMakeLists.txt

  Log Message:
  -----------
  Change required cmake version to cmake 3.6.3


  Commit: 05eef2803fa798593329632c227e38c7dcd0769d
      
https://github.com/STEllAR-GROUP/hpx/commit/05eef2803fa798593329632c227e38c7dcd0769d
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M CMakeLists.txt
    M cmake/HPX_AddModule.cmake
    M cmake/HPX_CompilerFlagsTarget.cmake
    M cmake/HPX_ExportTargets.cmake
    M cmake/HPX_GeneratePackage.cmake
    M cmake/templates/HPXConfig.cmake.in
    M src/CMakeLists.txt

  Log Message:
  -----------
  Export modules in HPXModulesTargets.cmake


  Commit: 294d71222bcec19f618300140b1da5d88fbc2d7d
      
https://github.com/STEllAR-GROUP/hpx/commit/294d71222bcec19f618300140b1da5d88fbc2d7d
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M cmake/templates/HPXConfig.cmake.in

  Log Message:
  -----------
  Remove unused variables in HPXConfig.cmake.in template


  Commit: 56dcabad5ac84cd3295c9c31d2613caf975007b5
      
https://github.com/STEllAR-GROUP/hpx/commit/56dcabad5ac84cd3295c9c31d2613caf975007b5
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M CMakeLists.txt
    M cmake/HPX_AddCompileFlag.cmake
    M cmake/HPX_AddExecutable.cmake
    M cmake/HPX_AddLibrary.cmake
    A cmake/HPX_SetupCuda.cmake
    M cmake/templates/HPXConfig.cmake.in
    M examples/compute/cuda/CMakeLists.txt
    M libs/segmented_algorithms/tests/unit/CMakeLists.txt
    M tests/regressions/computeapi/CMakeLists.txt
    M tests/unit/computeapi/host/CMakeLists.txt

  Log Message:
  -----------
  Refactor CUDA compilation


  Commit: 4d4c1355f5b46e416a273f5f46a121c5687c7681
      
https://github.com/STEllAR-GROUP/hpx/commit/4d4c1355f5b46e416a273f5f46a121c5687c7681
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M cmake/HPX_AddParcelport.cmake
    M cmake/HPX_AddPkgConfigExternalDepsTarget.cmake
    M cmake/HPX_FilterLibrariesMSVC.cmake
    M cmake/HPX_GeneratePackageUtils.cmake
    M cmake/HPX_SetupApex.cmake
    M cmake/HPX_SetupBoostFilesystem.cmake
    M cmake/HPX_SetupBoostProgramOptions.cmake
    M cmake/HPX_SetupCuda.cmake
    M cmake/HPX_SetupGooglePerfTools.cmake
    M cmake/HPX_SetupHpxmp.cmake
    M cmake/HPX_SetupHwloc.cmake
    M cmake/HPX_SetupLibfabric.cmake
    M cmake/HPX_SetupMPI.cmake
    M cmake/HPX_SetupPapi.cmake
    M cmake/HPX_SetupValgrind.cmake
    M cmake/HPX_SetupVerbs.cmake

  Log Message:
  -----------
  Fix inspect error on missing SPDX licenses


  Commit: 742d6d62ae11233231e1945a69ddb99023e5e80d
      
https://github.com/STEllAR-GROUP/hpx/commit/742d6d62ae11233231e1945a69ddb99023e5e80d
  Author: aurianer <auria...@cscs.ch>
  Date:   2019-09-27 (Fri, 27 Sep 2019)

  Changed paths:
    M src/CMakeLists.txt

  Log Message:
  -----------
  Tmp! remove unused include directory


Compare: 
https://github.com/STEllAR-GROUP/hpx/compare/a8dbc453b692...742d6d62ae11
_______________________________________________
hpx-commits mailing list
hpx-commits@stellar.cct.lsu.edu
https://mail.cct.lsu.edu/mailman/listinfo/hpx-commits

Reply via email to