-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pass CMake options to tests and examples, update installation docs
- Loading branch information
Showing
3 changed files
with
10 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
add_executable(diffusion diffusion.cpp) | ||
target_link_libraries(diffusion zfp) | ||
target_compile_definitions(diffusion PRIVATE ${zfp_defs}) | ||
|
||
add_executable(inplace inplace.c) | ||
target_link_libraries(inplace zfp) | ||
target_compile_definitions(inplace PRIVATE ${zfp_defs}) | ||
|
||
add_executable(iterator iterator.c) | ||
add_executable(iterator iterator.cpp) | ||
target_link_libraries(iterator zfp) | ||
target_compile_definitions(iterator PRIVATE ${zfp_defs}) | ||
|
||
add_executable(pgm pgm.c) | ||
target_link_libraries(pgm zfp) | ||
target_compile_definitions(pgm PRIVATE ${zfp_defs}) | ||
|
||
add_executable(simple simple.c) | ||
target_link_libraries(simple zfp) | ||
target_compile_definitions(simple PRIVATE ${zfp_defs}) | ||
|
||
add_executable(speed speed.c) | ||
target_link_libraries(speed zfp) | ||
target_compile_definitions(speed PRIVATE ${zfp_defs}) |
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