Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Note: This is not the primary build system for the project.
# The authoritative build and test configuration is defined in the Makefile.
# This CMake file exists solely to support IDE integration and assist
# contributors in importing the project into development environments.

cmake_minimum_required(VERSION 3.14)
project(jurand CXX)

set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)

add_compile_options(-Wall -Wextra -Wpedantic)

add_executable(jurand src/jurand.cpp)

enable_testing()
add_executable(jurand_test src/jurand_test.cpp)
add_test(NAME jurand_test COMMAND jurand_test)