From e3ad794c348ed204cf3ed7cb073b95c0109e891b Mon Sep 17 00:00:00 2001
From: Dmitri Naumov <dmitri.naumov@ufz.de>
Date: Wed, 10 Sep 2014 17:58:01 +0200
Subject: [PATCH] [A] Create ApplicationsLib.

This contains just ProjectData for now.
---
 Applications/CMakeLists.txt | 10 ++++++++++
 CMakeLists.txt              |  1 +
 2 files changed, 11 insertions(+)
 create mode 100644 Applications/CMakeLists.txt

diff --git a/Applications/CMakeLists.txt b/Applications/CMakeLists.txt
new file mode 100644
index 00000000000..a8fb8a985d1
--- /dev/null
+++ b/Applications/CMakeLists.txt
@@ -0,0 +1,10 @@
+# Source files
+SET ( LIB_SOURCES ProjectData.cpp )
+
+# Library
+ADD_LIBRARY (ApplicationsLib STATIC ${LIB_SOURCES})
+
+TARGET_LINK_LIBRARIES( ApplicationsLib
+        GeoLib
+        ProcessLib
+    )
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 972fbb190fe..0a5787b6f24 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -134,6 +134,7 @@ IF(OGS_BUILD_GUI)
 	ADD_SUBDIRECTORY(Gui)
 ENDIF() # OGS_BUILD_GUI
 
+ADD_SUBDIRECTORY( Applications )
 ADD_SUBDIRECTORY( AssemblerLib )
 ADD_SUBDIRECTORY( BaseLib )
 # TODO This is a hack but we have to make sure that Boost is built first
-- 
GitLab