Changeset 3196 in orxonox.OLD for orxonox/trunk/src/importer
- Timestamp:
- Dec 17, 2004, 12:17:52 AM (20 years ago)
- Location:
- orxonox/trunk/src/importer
- Files:
-
- 7 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/importer/Makefile.in
r3186 r3196 24 24 pkglibdir = $(libdir)/@PACKAGE@ 25 25 pkgincludedir = $(includedir)/@PACKAGE@ 26 top_builddir = .. 26 top_builddir = ../.. 27 27 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd 28 28 INSTALL = @INSTALL@ … … 40 40 host_triplet = @host@ 41 41 bin_PROGRAMS = importer$(EXEEXT) 42 subdir = importer42 subdir = src/importer 43 43 DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \ 44 44 $(srcdir)/Makefile.in … … 199 199 esac; \ 200 200 done; \ 201 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign importer/Makefile'; \201 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/importer/Makefile'; \ 202 202 cd $(top_srcdir) && \ 203 $(AUTOMAKE) --foreign importer/Makefile203 $(AUTOMAKE) --foreign src/importer/Makefile 204 204 .PRECIOUS: Makefile 205 205 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/importer/array.h
r3186 r3196 11 11 extern int verbose; //!< will be obsolete soon 12 12 13 #include " stdincl.h"13 #include "../stdincl.h" 14 14 #include <fstream> 15 15 -
orxonox/trunk/src/importer/framework.cc
r3140 r3196 16 16 #include "framework.h" 17 17 18 int verbose = 2;19 18 20 19 void DrawGLScene() … … 53 52 int main(int argc, char *argv[]) 54 53 { 54 int verbose = 2; 55 55 Uint8* keys; // This variable will be used in the keyboard routine 56 56 int done=FALSE; // We aren't done yet, are we? -
orxonox/trunk/src/importer/material.h
r3186 r3196 13 13 extern int verbose; //!< will be obsolete soon. 14 14 15 #include " stdincl.h"15 #include "../stdincl.h" 16 16 17 17 #if HAVE_CONFIG_H -
orxonox/trunk/src/importer/object.cc
r3195 r3196 15 15 16 16 #include "object.h" 17 int verbose = 1; //! \todo should be GLOBAL 17 18 using namespace std; 18 19 -
orxonox/trunk/src/importer/object.h
r3186 r3196 7 7 #define _OBJECT_H 8 8 9 #include " stdincl.h"9 #include "../stdincl.h" 10 10 11 11 #include "array.h" … … 16 16 using namespace std; 17 17 18 extern int verbose; //!< Will be removed and added again as a verbose-class.19 18 20 19 -
orxonox/trunk/src/importer/windowHandler.h
r3189 r3196 4 4 extern int verbose; 5 5 6 #include " stdincl.h"6 #include "../stdincl.h" 7 7 8 8 #include <stdarg.h>
Note: See TracChangeset
for help on using the changeset viewer.