Skip to content
Snippets Groups Projects
Commit 2e58b089 authored by Lars Bilke's avatar Lars Bilke
Browse files

Moved Gui to Applications/DataExplorer.

- moved ProjectData.* to Applications/ApplicationsLib
- removed Vrpn folder in DataExplorer
parent 47fda365
No related branches found
No related tags found
No related merge requests found
Showing
with 18 additions and 10 deletions
# Source files
SET ( LIB_SOURCES ProjectData.cpp )
# Library
ADD_LIBRARY (ApplicationsLib STATIC ${LIB_SOURCES})
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/../DataExplorer/DataView)
TARGET_LINK_LIBRARIES( ApplicationsLib
GeoLib
ProcessLib
)
......@@ -16,7 +16,7 @@
#include <boost/property_tree/ptree.hpp>
#ifdef OGS_BUILD_GUI
#include "Gui/DataView/GEOModels.h"
#include "GEOModels.h"
#else
#include "GeoLib/GEOObjects.h"
#endif
......
# Source files
SET ( LIB_SOURCES ProjectData.cpp )
ADD_SUBDIRECTORY(ApplicationsLib)
# Library
ADD_LIBRARY (ApplicationsLib STATIC ${LIB_SOURCES})
TARGET_LINK_LIBRARIES( ApplicationsLib
GeoLib
ProcessLib
)
IF(OGS_BUILD_GUI)
ADD_DEFINITIONS(-DOGS_BUILD_GUI)
ADD_SUBDIRECTORY(DataExplorer)
ENDIF() # OGS_BUILD_GUI
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment