forked from conan-io/conan-center-index
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
4 changed files
with
63 additions
and
141 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,8 +1,8 @@ | ||
cmake_minimum_required(VERSION 3.15) | ||
project(WaveletBufferTest CXX) | ||
cmake_minimum_required(VERSION 3.12) | ||
project(WaveletBufferTest LANGUAGES CXX) | ||
|
||
find_package(wavelet_buffer CONFIG REQUIRED) | ||
|
||
add_executable(test_package test_package.cpp) | ||
target_compile_features(test_package PUBLIC cxx_std_20) | ||
target_link_libraries(test_package wavelet_buffer::wavelet_buffer) | ||
target_compile_features(test_package PRIVATE cxx_std_20) | ||
target_link_libraries(test_package PRIVATE wavelet_buffer::wavelet_buffer) |
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