Files
cs3100hw6/CMakeLists.txt
Brady Bodily d089172e5e first push
2018-04-10 04:17:17 +00:00

15 lines
303 B
CMake

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
)