push to github

This commit is contained in:
2020-03-16 19:49:59 -06:00
parent 4cc4ae4afd
commit 1d67b1ff76
114 changed files with 7067 additions and 27 deletions

10
ConWays/CMakeLists.txt Normal file
View File

@@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 3.15)
project(untitled)
find_package(MPI REQUIRED)
add_definitions(-DOMPI_SKIP_MPICXX)
set(CMAKE_CXX_STANDARD 11)
add_executable(main main.cpp test.h)
target_link_libraries(main PRIVATE MPI::MPI_C)