diff --git a/Applications/DataExplorer/CMakeLists.txt b/Applications/DataExplorer/CMakeLists.txt index f9c9911714491b024f2a11d5a8627d32f3b59f0b..b84885657239c5fe1244ff9a2e24f52b33bcbb3b 100644 --- a/Applications/DataExplorer/CMakeLists.txt +++ b/Applications/DataExplorer/CMakeLists.txt @@ -9,7 +9,6 @@ endif() if(VTKFBXCONVERTER_FOUND) add_definitions(-DVTKFBXCONVERTER_FOUND) - include_directories(${VTKFBXCONVERTER_INCLUDE_DIRS}) endif() # Add subprojects diff --git a/Applications/DataExplorer/VtkVis/VtkVisPipelineItem.cpp b/Applications/DataExplorer/VtkVis/VtkVisPipelineItem.cpp index f50dfc2c120362a320fc640ad6d33a894b16e0c6..9de591a278648386e703cba23addcaf37ef0566b 100644 --- a/Applications/DataExplorer/VtkVis/VtkVisPipelineItem.cpp +++ b/Applications/DataExplorer/VtkVis/VtkVisPipelineItem.cpp @@ -35,10 +35,9 @@ #include <QMessageBox> #ifdef VTKFBXCONVERTER_FOUND -#include "ThirdParty/VtkFbxConverter/VtkFbxConverter.h" -#include "Common.h" #include <fbxsdk.h> - +#include "ThirdParty/VtkFbxConverter/Common.h" +#include "ThirdParty/VtkFbxConverter/VtkFbxConverter.h" extern FbxManager* lSdkManager; extern FbxScene* lScene; diff --git a/Applications/DataExplorer/main.cpp b/Applications/DataExplorer/main.cpp index 2de9c234f62eaa703e45f5bc5918a99563919c87..1f6404aa23af880b61f1d5160ca1971a216025d1 100644 --- a/Applications/DataExplorer/main.cpp +++ b/Applications/DataExplorer/main.cpp @@ -7,7 +7,7 @@ #include "LogogSimpleFormatter.h" #ifdef VTKFBXCONVERTER_FOUND #include <fbxsdk.h> -#include "Common.h" +#include "ThirdParty/VtkFbxConverter/Common.h" FbxManager* lSdkManager = nullptr; FbxScene* lScene = nullptr; #endif