Skip to content

Commit

Permalink
fix install INCLUDE path
Browse files Browse the repository at this point in the history
Usage:

#include <cvsteer/SteerableFiltersG2.h>

needs :

INCLUDES DESTINATION "${include_install_dir}"

not:

INCLUDES DESTINATION "${include_install_dir}/${PROJECT_NAME}”
  • Loading branch information
headupinclouds committed Jan 28, 2018
1 parent 37610bd commit f3f1a4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cvsteer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ install(
LIBRARY DESTINATION "lib"
ARCHIVE DESTINATION "lib"
RUNTIME DESTINATION "bin"
INCLUDES DESTINATION "${include_install_dir}/${PROJECT_NAME}"
INCLUDES DESTINATION "${include_install_dir}"
)

install(
Expand Down

0 comments on commit f3f1a4f

Please sign in to comment.