Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3196 in orxonox.OLD for orxonox/trunk/src/importer


Ignore:
Timestamp:
Dec 17, 2004, 12:17:52 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: moved importer into the Trunk, now no merging is needed anymore.

Location:
orxonox/trunk/src/importer
Files:
7 edited
1 moved

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/importer/Makefile.in

    r3186 r3196  
    2424pkglibdir = $(libdir)/@PACKAGE@
    2525pkgincludedir = $(includedir)/@PACKAGE@
    26 top_builddir = ..
     26top_builddir = ../..
    2727am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
    2828INSTALL = @INSTALL@
     
    4040host_triplet = @host@
    4141bin_PROGRAMS = importer$(EXEEXT)
    42 subdir = importer
     42subdir = src/importer
    4343DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
    4444        $(srcdir)/Makefile.in
     
    199199          esac; \
    200200        done; \
    201         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  importer/Makefile'; \
     201        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/importer/Makefile'; \
    202202        cd $(top_srcdir) && \
    203           $(AUTOMAKE) --foreign  importer/Makefile
     203          $(AUTOMAKE) --foreign  src/importer/Makefile
    204204.PRECIOUS: Makefile
    205205Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • orxonox/trunk/src/importer/array.h

    r3186 r3196  
    1111extern int verbose; //!< will be obsolete soon
    1212
    13 #include "stdincl.h"
     13#include "../stdincl.h"
    1414#include <fstream>
    1515
  • orxonox/trunk/src/importer/framework.cc

    r3140 r3196  
    1616#include "framework.h"
    1717
    18 int verbose = 2;
    1918
    2019void DrawGLScene()
     
    5352int main(int argc, char *argv[])
    5453{
     54  int verbose = 2;
    5555  Uint8* keys; // This variable will be used in the keyboard routine
    5656  int done=FALSE; // We aren't done yet, are we?
  • orxonox/trunk/src/importer/material.h

    r3186 r3196  
    1313extern int verbose; //!< will be obsolete soon.
    1414
    15 #include "stdincl.h"
     15#include "../stdincl.h"
    1616
    1717#if HAVE_CONFIG_H
  • orxonox/trunk/src/importer/object.cc

    r3195 r3196  
    1515
    1616#include "object.h"
     17int verbose = 1; //! \todo should be GLOBAL
    1718using namespace std;
    1819
  • orxonox/trunk/src/importer/object.h

    r3186 r3196  
    77#define _OBJECT_H
    88
    9 #include "stdincl.h"
     9#include "../stdincl.h"
    1010
    1111#include "array.h"
     
    1616using namespace std;
    1717
    18 extern int verbose; //!< Will be removed and added again as a verbose-class.
    1918
    2019
  • orxonox/trunk/src/importer/windowHandler.h

    r3189 r3196  
    44extern int verbose;
    55
    6 #include "stdincl.h"
     6#include "../stdincl.h"
    77
    88#include <stdarg.h>
Note: See TracChangeset for help on using the changeset viewer.