first push

This commit is contained in:
Brady Bodily
2018-04-10 04:17:17 +00:00
commit d089172e5e
38 changed files with 3575 additions and 0 deletions

14
CMakeLists.txt Normal file
View 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
)