fixed headers and SConscript to have successful build

This commit is contained in:
Maxime Curioni
2009-10-05 01:27:35 +00:00
parent f5a14015e3
commit 896a5fccef
6 changed files with 21 additions and 17 deletions

View File

@@ -48,9 +48,13 @@ stroke_sources = env.Glob(prefix + '/*.cpp')
prefix = 'intern/rendering'
rendering_sources = env.Glob(prefix + '/GL*.cpp')
# app / app_blender
prefix = 'intern/app_blender'
app_sources = env.Glob(prefix + '/*.cpp')
# application
prefix = 'intern/application'
application_sources = env.Glob(prefix + '/*.cpp')
# blender_interface
prefix = 'intern/blender_interface'
interface_sources = env.Glob(prefix + '/*.cpp')
# Python
prefix = 'intern/python'
@@ -61,7 +65,7 @@ python_sources = env.Glob(prefix + '/*.cpp') \
sources = system_sources + image_sources + geometry_sources + scene_graph_sources \
+ winged_edge_sources + view_map_sources + stroke_sources + rendering_sources \
+ app_sources + python_sources
+ application_sources + interface_sources + python_sources
env.BlenderLib (libname="bf_freestyle",
sources=sources,

View File

@@ -56,8 +56,8 @@
#include "../system/StringUtils.h"
#include "../scene_graph/BlenderFileLoader.h"
#include "../stroke/BlenderStrokeRenderer.h"
#include "../blender_interface/BlenderFileLoader.h"
#include "../blender_interface/BlenderStrokeRenderer.h"
#ifdef __cplusplus
extern "C" {

View File

@@ -5,10 +5,10 @@
# include <float.h>
# include "../system/FreestyleConfig.h"
# include "NodeGroup.h"
# include "NodeTransform.h"
# include "NodeShape.h"
# include "IndexedFaceSet.h"
# include "../scene_graph/NodeGroup.h"
# include "../scene_graph/NodeTransform.h"
# include "../scene_graph/NodeShape.h"
# include "../scene_graph/IndexedFaceSet.h"
# include "../geometry/BBox.h"
# include "../geometry/Geom.h"
# include "../geometry/GeomCleaner.h"

View File

@@ -1,6 +1,6 @@
# include "BlenderStrokeRenderer.h"
# include "Canvas.h"
# include "../app_blender/AppConfig.h"
# include "../stroke/Canvas.h"
# include "../application/AppConfig.h"
# include "../rendering/GLStrokeRenderer.h"

View File

@@ -2,7 +2,7 @@
# define BLENDERSTROKERENDERER_H
# include "../system/FreestyleConfig.h"
# include "StrokeRenderer.h"
# include "../stroke/StrokeRenderer.h"
#ifdef __cplusplus
extern "C" {

View File

@@ -1,7 +1,7 @@
#include "AppView.h"
#include "Controller.h"
#include "AppConfig.h"
#include "AppCanvas.h"
#include "../application/AppView.h"
#include "../application/Controller.h"
#include "../application/AppConfig.h"
#include "../application/AppCanvas.h"
#include <iostream>
#include <map>