From 1a48da617c272f8ec6aa7976610a7be737c780d5 Mon Sep 17 00:00:00 2001 From: Archivist Date: Thu, 14 Apr 2022 20:55:28 +0000 Subject: [PATCH] Add 'CMakeLists.txt' --- CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..a126a5f --- /dev/null +++ b/CMakeLists.txt @@ -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)