summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGard Spreemann <gard.spreemann@epfl.ch>2017-09-21 13:35:50 +0200
committerGard Spreemann <gard.spreemann@epfl.ch>2017-09-21 13:35:50 +0200
commitaa1134796c1d4003dbdf9dc92a1b7d00598f67ce (patch)
tree3b53aa6a1de5bdfd37ef954ae9261990cee55763 /src
Initial commit.
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt2
-rw-r--r--src/main.cpp6
2 files changed, 8 insertions, 0 deletions
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 <iostream>
+
+int main(int argc, char ** argv)
+{
+ return 0;
+}