Skip to content
Snippets Groups Projects
Commit fd55b530 authored by Lars Bilke's avatar Lars Bilke Committed by Tom Fischer
Browse files

[CMake,DE] Corrected dependencies.

parent 2b1ca198
No related branches found
No related tags found
No related merge requests found
...@@ -36,9 +36,7 @@ add_library(QtBase ...@@ -36,9 +36,7 @@ add_library(QtBase
${HEADERS} ${HEADERS}
) )
target_link_libraries(QtBase target_link_libraries(QtBase Qt5::Widgets)
Qt5::Widgets
GeoLib)
set_property(TARGET QtBase PROPERTY FOLDER "DataExplorer") set_property(TARGET QtBase PROPERTY FOLDER "DataExplorer")
......
...@@ -54,21 +54,25 @@ add_executable(DataExplorer ...@@ -54,21 +54,25 @@ add_executable(DataExplorer
) )
target_link_libraries(DataExplorer target_link_libraries(DataExplorer
Qt5::Core BaseLib
Qt5::Gui GeoLib
Qt5::Widgets MeshGeoToolsLib
Qt5::Xml MeshLib
Qt5::Network
ApplicationsLib ApplicationsLib
ApplicationsFileIO ApplicationsFileIO
DataHolderLib DataHolderLib
OGSFileConverterLib
QtBase
QtDataView QtDataView
QtDiagramView QtDiagramView
QtStratView
VtkVis VtkVis
Threads::Threads Threads::Threads
OGSFileConverterLib
vtkGUISupportQt vtkGUISupportQt
Qt5::Core
Qt5::Gui
Qt5::Widgets
Qt5::Xml
Qt5::Network
logog logog
) )
...@@ -94,8 +98,6 @@ if(GEOTIFF_FOUND) ...@@ -94,8 +98,6 @@ if(GEOTIFF_FOUND)
target_link_libraries(DataExplorer ${GEOTIFF_LIBRARIES} ) target_link_libraries(DataExplorer ${GEOTIFF_LIBRARIES} )
endif() endif()
add_dependencies (DataExplorer VtkVis)
if(MSVC) if(MSVC)
# Set linker flags # Set linker flags
set(CMAKE_EXE_LINKER_FLAGS_DEBUG "${CMAKE_EXE_LINKER_FLAGS_DEBUG} /NODEFAULTLIB:MSVCRT /IGNORE:4099") set(CMAKE_EXE_LINKER_FLAGS_DEBUG "${CMAKE_EXE_LINKER_FLAGS_DEBUG} /NODEFAULTLIB:MSVCRT /IGNORE:4099")
......
...@@ -134,19 +134,15 @@ add_library(QtDataView ...@@ -134,19 +134,15 @@ add_library(QtDataView
) )
target_link_libraries(QtDataView target_link_libraries(QtDataView
Qt5::Core PUBLIC GeoLib MeshGeoToolsLib MeshLib QtBase VtkVis
Qt5::Gui PRIVATE BaseLib MathLib ApplicationsFileIO QtDiagramView QtStratView
ApplicationsFileIO DataHolderLib logog Qt5::Core Qt5::Gui
DataHolderLib
QtBase
QtDiagramView
QtStratView
) )
ADD_VTK_DEPENDENCY(QtDataView) ADD_VTK_DEPENDENCY(QtDataView)
if(GEOTIFF_FOUND) if(GEOTIFF_FOUND)
target_link_libraries( QtDataView ${GEOTIFF_LIBRARIES} ) target_link_libraries(QtDataView PRIVATE ${GEOTIFF_LIBRARIES})
endif () # GEOTIFF_FOUND endif () # GEOTIFF_FOUND
set_property(TARGET QtDataView PROPERTY FOLDER "DataExplorer") set_property(TARGET QtDataView PROPERTY FOLDER "DataExplorer")
......
...@@ -41,10 +41,8 @@ add_library(QtDiagramView ...@@ -41,10 +41,8 @@ add_library(QtDiagramView
) )
target_link_libraries(QtDiagramView target_link_libraries(QtDiagramView
Qt5::Gui PRIVATE BaseLib GeoLib QtBase DataHolderLib Qt5::Gui logog
GeoLib )
QtBase
)
set_property(TARGET QtDiagramView PROPERTY FOLDER "DataExplorer") set_property(TARGET QtDiagramView PROPERTY FOLDER "DataExplorer")
......
...@@ -32,7 +32,9 @@ add_library(QtStratView ...@@ -32,7 +32,9 @@ add_library(QtStratView
${UIS} ${UIS}
) )
target_link_libraries(QtStratView Qt5::Gui QtBase) target_link_libraries(QtStratView
PRIVATE BaseLib GeoLib DataHolderLib QtBase Qt5::Gui
)
set_property(TARGET QtStratView PROPERTY FOLDER "DataExplorer") set_property(TARGET QtStratView PROPERTY FOLDER "DataExplorer")
......
...@@ -136,7 +136,8 @@ if(GEOTIFF_FOUND) ...@@ -136,7 +136,8 @@ if(GEOTIFF_FOUND)
endif() # GEOTIFF_FOUND endif() # GEOTIFF_FOUND
target_link_libraries(VtkVis target_link_libraries(VtkVis
PUBLIC Qt5::Gui QtDataView PUBLIC BaseLib GeoLib MeshLib DataHolderLib QtBase
PRIVATE MathLib ApplicationsFileIO QtDataView Qt5::Gui logog
INTERFACE ${VTK_LIBRARIES} INTERFACE ${VTK_LIBRARIES}
) )
set_property(TARGET VtkVis PROPERTY FOLDER "DataExplorer") set_property(TARGET VtkVis PROPERTY FOLDER "DataExplorer")
......
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