-
Notifications
You must be signed in to change notification settings - Fork 438
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cmake interfaces and better installation. (#771)
* cmake interfaces and better installation. * added missing link_libraries in test * added -version.cmake * fixed include in header check * added missing install prefix
- Loading branch information
1 parent
4ade4af
commit 2ff4cf2
Showing
12 changed files
with
249 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
add_executable(counted_insertion_sort counted_insertion_sort.cpp) | ||
target_link_libraries(counted_insertion_sort range-v3) | ||
|
||
add_executable(sort_patterns sort_patterns.cpp) | ||
target_link_libraries(sort_patterns range-v3) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,75 @@ | ||
add_executable(act.concepts cont_concepts.cpp) | ||
target_link_libraries(act.concepts range-v3) | ||
add_test(test.act.concepts act.concepts) | ||
|
||
add_executable(act.drop drop.cpp) | ||
target_link_libraries(act.drop range-v3) | ||
add_test(test.act.drop act.drop) | ||
|
||
add_executable(act.drop_while drop_while.cpp) | ||
target_link_libraries(act.drop_while range-v3) | ||
add_test(test.act.drop_while act.drop_while) | ||
|
||
add_executable(act.insert insert.cpp) | ||
target_link_libraries(act.insert range-v3) | ||
add_test(test.act.insert act.insert) | ||
|
||
add_executable(act.join join.cpp) | ||
target_link_libraries(act.join range-v3) | ||
add_test(test.act.join act.join) | ||
|
||
add_executable(act.push_front push_front.cpp) | ||
target_link_libraries(act.push_front range-v3) | ||
add_test(test.act.push_front act.push_front) | ||
|
||
add_executable(act.push_back push_back.cpp) | ||
target_link_libraries(act.push_back range-v3) | ||
add_test(test.act.push_back act.push_back) | ||
|
||
add_executable(act.remove_if remove_if.cpp) | ||
target_link_libraries(act.remove_if range-v3) | ||
add_test(test.act.remove_if act.remove_if) | ||
|
||
add_executable(act.reverse reverse.cpp) | ||
target_link_libraries(act.reverse range-v3) | ||
add_test(test.act.reverse act.reverse) | ||
|
||
add_executable(act.shuffle shuffle.cpp) | ||
target_link_libraries(act.shuffle range-v3) | ||
add_test(test.act.shuffle act.shuffle) | ||
|
||
add_executable(act.slice slice.cpp) | ||
target_link_libraries(act.slice range-v3) | ||
add_test(test.act.slice act.slice) | ||
|
||
add_executable(act.sort sort.cpp) | ||
target_link_libraries(act.sort range-v3) | ||
add_test(test.act.sort act.sort) | ||
|
||
add_executable(act.split split.cpp) | ||
target_link_libraries(act.split range-v3) | ||
add_test(test.act.split act.split) | ||
|
||
add_executable(act.stable_sort stable_sort.cpp) | ||
target_link_libraries(act.stable_sort range-v3) | ||
add_test(test.act.stable_sort act.stable_sort) | ||
|
||
add_executable(act.stride stride.cpp) | ||
target_link_libraries(act.stride range-v3) | ||
add_test(test.act.stride act.stride) | ||
|
||
add_executable(act.take take.cpp) | ||
target_link_libraries(act.take range-v3) | ||
add_test(test.act.take act.take) | ||
|
||
add_executable(act.take_while take_while.cpp) | ||
target_link_libraries(act.take_while range-v3) | ||
add_test(test.act.take_while act.take_while) | ||
|
||
add_executable(act.transform transform.cpp) | ||
target_link_libraries(act.transform range-v3) | ||
add_test(test.act.transform act.transform) | ||
|
||
add_executable(act.unique unique.cpp) | ||
target_link_libraries(act.unique range-v3) | ||
add_test(test.act.unique act.unique) |
Oops, something went wrong.