Browse Source

I assume too much about header paths...

BuildTools 7 years ago
parent
commit
0c4c66be50

+ 1 - 1
scripts/adjust_header_paths.sh

@@ -34,5 +34,5 @@ declare -a headers=("fast_atof.h"
 
 
 for i in "${headers[@]}"
 for i in "${headers[@]}"
 do
 do
-  find . -type f -exec sed -i "s,\"../../code/$i\",<assimp/$i>,g" {} \;
+  find . -type f -exec sed -i "s,\"$i\",<assimp/$i>,g" {} \;
 done
 done

+ 1 - 1
tools/assimp_view/Background.cpp

@@ -40,7 +40,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 */
 
 
 #include "assimp_view.h"
 #include "assimp_view.h"
-#include "StringUtils.h"
+#include <assimp/StringUtils.h>
 
 
 namespace AssimpView {
 namespace AssimpView {
 
 

+ 1 - 1
tools/assimp_view/Display.cpp

@@ -41,7 +41,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #include "assimp_view.h"
 #include "assimp_view.h"
 #include "AnimEvaluator.h"
 #include "AnimEvaluator.h"
 #include "SceneAnimator.h"
 #include "SceneAnimator.h"
-#include "StringUtils.h"
+#include <assimp/StringUtils.h>
 
 
 #include <commdlg.h>
 #include <commdlg.h>
 
 

+ 1 - 1
tools/assimp_view/assimp_view.cpp

@@ -43,7 +43,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 
 #include "assimp_view.h"
 #include "assimp_view.h"
 #include <timeapi.h>
 #include <timeapi.h>
-#include "StringUtils.h"
+#include <assimp/StringUtils.h>
 #include <map>
 #include <map>
 
 
 using namespace std;
 using namespace std;