just need to add the timer

This commit is contained in:
Brady Bodily
2018-04-25 18:49:08 +00:00
commit 5766ae053f
35 changed files with 3285 additions and 0 deletions

10
CMakeLists.txt Normal file
View File

@@ -0,0 +1,10 @@
cmake_minimum_required (VERSION 3.0)
project (BeladysAnomoly)
if (CMAKE_COMPILER_IS_GNUCXX)
set(CMAKE_CXX_FLAGS "-std=c++11 -pthread -O3 ${CMAKE_CXX_FLAGS}")
endif()
add_executable(BeladysAnomoly
main.cpp
)