-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
53e42a3
commit 0edf7e1
Showing
2 changed files
with
11 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,21 @@ | ||
if (QUERYOSITY_EXAMPLES) | ||
if(QUERYOSITY_EXAMPLES) | ||
|
||
install(FILES ${CMAKE_SOURCE_DIR}/data/data.json | ||
DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/) | ||
|
||
install(FILES ${CMAKE_SOURCE_DIR}/data/data.csv | ||
DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/) | ||
|
||
add_executable(example-hello_world ./example-hello_world.cxx) | ||
target_compile_features(example-hello_world PUBLIC cxx_std_17) | ||
target_link_libraries(example-hello_world queryosity::extensions pthread ${Boost_LIBRARIES}) | ||
target_link_libraries(example-hello_world queryosity::extensions pthread | ||
${Boost_LIBRARIES}) | ||
add_test(NAME example-hello_world COMMAND example-hello_world) | ||
|
||
add_executable(example-multiple_datasets ./example-multiple_datasets.cxx) | ||
target_compile_features(example-multiple_datasets PUBLIC cxx_std_17) | ||
target_link_libraries(example-multiple_datasets queryosity::extensions pthread ${Boost_LIBRARIES}) | ||
target_link_libraries(example-multiple_datasets queryosity::extensions | ||
pthread ${Boost_LIBRARIES}) | ||
add_test(NAME example-multiple_datasets COMMAND example-multiple_datasets) | ||
|
||
endif() |
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