Skip to content

Commit

Permalink
Merge pull request #20 from Bnmann/dev-bnmann-fix-cmake-export
Browse files Browse the repository at this point in the history
Fix invalid cmake export configuration
  • Loading branch information
p-ranav authored May 25, 2019
2 parents 7c5ee10 + 3b5d472 commit b95765f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ add_library(argparse::argparse ALIAS argparse)
target_compile_features(argparse INTERFACE cxx_std_17)
target_include_directories(argparse INTERFACE
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}>/include)
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>)

if(ARGPARSE_BUILD_TESTS)
add_subdirectory(test)
Expand Down

0 comments on commit b95765f

Please sign in to comment.