Skip to content

Commit

Permalink
Fix ambiguous cmake target names
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed Jul 8, 2017
1 parent d75708e commit 8acce28
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/interpolate1d/CMakeLists.txt
Expand Up @@ -35,10 +35,10 @@ if(HPX_WITH_EXAMPLES_HDF5)

# make pseudo-targets depend on master pseudo-target
add_hpx_pseudo_dependencies(examples.interpolate1d
examples.interpolate1d.${subdir})
examples.interpolate1d.${subdir}_)

# add dependencies to pseudo-target
add_hpx_pseudo_dependencies(examples.interpolate1d.${subdir}
add_hpx_pseudo_dependencies(examples.interpolate1d.${subdir}_
${subdir}_client_exe)
endforeach()

Expand Down
4 changes: 2 additions & 2 deletions examples/sheneos/CMakeLists.txt
Expand Up @@ -12,12 +12,12 @@ if(HPX_WITH_EXAMPLES_HDF5)
include_directories(${HDF5_INCLUDE_DIRS})

# add a custom target for this example
add_hpx_pseudo_target(examples.sheneos.sheneos)
add_hpx_pseudo_target(examples.sheneos.sheneos_)

add_subdirectory(sheneos)

# make pseudo-targets depend on master pseudo-target
add_hpx_pseudo_dependencies(examples.sheneos examples.sheneos.sheneos)
add_hpx_pseudo_dependencies(examples.sheneos examples.sheneos.sheneos_)

###############################################################################
# add example executable
Expand Down

0 comments on commit 8acce28

Please sign in to comment.