This website works better with JavaScript.
Home
Explore
Help
Sign In
Archivist
/
PRNG_TESTS
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Add 'CMakeLists.txt'
master
Archivist
2 years ago
parent
cad26409f0
commit
1a48da617c
1 changed files
with
8 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-0
CMakeLists.txt
+ 8
- 0
CMakeLists.txt
View File
@ -0,0 +1,8 @@
cmake_minimum_required
(
VERSION
3.18
)
project
(
ChaPRNG
)
set
(
CMAKE_CXX_STANDARD
17
)
find_package
(
benchmark
REQUIRED
)
add_executable
(
ChaPRNG
main.cpp
)
target_link_libraries
(
ChaPRNG
benchmark::benchmark
)
Write
Preview
Loading…
Cancel
Save