From aa1134796c1d4003dbdf9dc92a1b7d00598f67ce Mon Sep 17 00:00:00 2001 From: Gard Spreemann Date: Thu, 21 Sep 2017 13:35:50 +0200 Subject: Initial commit. --- src/CMakeLists.txt | 2 ++ src/main.cpp | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 src/CMakeLists.txt create mode 100644 src/main.cpp (limited to 'src') diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..96aafbe --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,2 @@ +add_executable(lapdog main.cpp) +target_link_libraries(lapdog ${MPI_LIBRARIES}) diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..a6802d8 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,6 @@ +#include + +int main(int argc, char ** argv) +{ + return 0; +} -- cgit v1.2.3