Skip to content

Commit

Permalink
CMake: Fix typo causing bad paths in installed target files
Browse files Browse the repository at this point in the history
  • Loading branch information
CFSworks committed Jun 5, 2019
1 parent d7a093a commit 449a514
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dtool/src/dtoolbase/CMakeLists.txt
Expand Up @@ -91,7 +91,7 @@ add_component_library(p3dtoolbase NOINIT SYMBOL BUILDING_DTOOL_DTOOLBASE
# Help other libraries find the autogenerated headers
target_include_directories(p3dtoolbase PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>
$<BUILD_INTERFACE:${PROJECT_BINARY_DIR}/${CMAKE_CFG_INTDIR}>/include)
$<BUILD_INTERFACE:${PROJECT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/include>)
target_link_libraries(p3dtoolbase PKG::EIGEN PKG::THREADS)
target_interrogate(p3dtoolbase ${P3DTOOLBASE_SOURCES} EXTENSIONS ${P3DTOOLBASE_IGATEEXT})

Expand Down

0 comments on commit 449a514

Please sign in to comment.