first push
This commit is contained in:
14
CMakeLists.txt
Normal file
14
CMakeLists.txt
Normal file
@@ -0,0 +1,14 @@
|
||||
cmake_minimum_required (VERSION 3.0)
|
||||
project (ComputePi)
|
||||
|
||||
if (CMAKE_COMPILER_IS_GNUCXX)
|
||||
set(CMAKE_CXX_FLAGS "-std=c++11 -pthread -O3 ${CMAKE_CXX_FLAGS}")
|
||||
endif()
|
||||
|
||||
add_executable(ComputePi
|
||||
main.cpp
|
||||
computePi.cpp
|
||||
computePi.hpp
|
||||
|
||||
# Add files implementing your thread-safe data structures below
|
||||
)
|
||||
Reference in New Issue
Block a user