Skip to content

Commit

Permalink
Merge pull request #2442 from deslaughter/b/mappp_include
Browse files Browse the repository at this point in the history
Fix path to installed MAP include files
  • Loading branch information
andrew-platt authored Sep 27, 2024
2 parents a5c11f2 + 5deea3e commit 14958ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/map/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ add_library(mappplib STATIC
target_sources(
mappplib
PUBLIC
$<INSTALL_INTERFACE:MAP_Types.h>
$<INSTALL_INTERFACE:$<INSTALL_PREFIX>/include/mappp/MAP_Types.h>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src/MAP_Types.h>
$<INSTALL_INTERFACE:mapsys.h>
$<INSTALL_INTERFACE:$<INSTALL_PREFIX>/include/mappp/mapsys.h>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src/mapsys.h>
$<INSTALL_INTERFACE:maperror.h>
$<INSTALL_INTERFACE:$<INSTALL_PREFIX>/include/mappp/maperror.h>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src/maperror.h>
$<INSTALL_INTERFACE:mapapi.h>
$<INSTALL_INTERFACE:$<INSTALL_PREFIX>/include/mappp/mapapi.h>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src/mapapi.h>
)
target_link_libraries(mappplib nwtclibs)
Expand Down

0 comments on commit 14958ec

Please sign in to comment.