prime count function
This commit is contained in:
18
CMakeLists.txt
Normal file
18
CMakeLists.txt
Normal file
@@ -0,0 +1,18 @@
|
||||
# CMakeList.txt : CMake project for xtfs, include source and define
|
||||
# project specific logic here.
|
||||
#
|
||||
cmake_minimum_required (VERSION 3.16)
|
||||
|
||||
|
||||
project ("primetest")
|
||||
|
||||
# Add source to this project's executable.s
|
||||
|
||||
add_executable (primetest "src/primetest.cpp")
|
||||
|
||||
set_property(TARGET primetest PROPERTY CXX_STANDARD 17)
|
||||
set_property(TARGET primetest PROPERTY CXX_STANDARD_REQUIRED ON)
|
||||
set_property(TARGET primetest PROPERTY CXX_EXTENSIONS OFF)
|
||||
|
||||
|
||||
# TODO: Add tests and install targets if needed.
|
||||
Reference in New Issue
Block a user