Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5311 in orxonox.OLD


Ignore:
Timestamp:
Oct 8, 2005, 1:08:04 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: moved the entire GUI

Location:
trunk
Files:
3 added
24 edited
1 copied
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/configure

    r5296 r5311  
    1071710717## OUTPUT CONFIGURE ##
    1071810718######################
    10719                                                                                                                                                                                               ac_config_files="$ac_config_files Makefile src/Makefile src/lib/Makefile src/lib/graphics/Makefile src/lib/graphics/importer/Makefile src/lib/graphics/spatial_separation/Makefile src/lib/sound/Makefile src/lib/event/Makefile src/lib/physics/Makefile src/lib/particles/Makefile src/lib/collision_detection/Makefile src/lib/shell/Makefile src/lib/gui/Makefile src/lib/tinyxml/Makefile src/subprojects/Makefile src/subprojects/testmain/Makefile src/subprojects/importer/Makefile src/subprojects/particles/Makefile src/subprojects/collision_detection/Makefile"
     10719                                                                                                                                                                                                        ac_config_files="$ac_config_files Makefile src/Makefile src/lib/Makefile src/lib/graphics/Makefile src/lib/graphics/importer/Makefile src/lib/graphics/spatial_separation/Makefile src/lib/sound/Makefile src/lib/event/Makefile src/lib/physics/Makefile src/lib/particles/Makefile src/lib/collision_detection/Makefile src/lib/shell/Makefile src/lib/gui/Makefile src/lib/gui/gui_gtk/Makefile src/lib/tinyxml/Makefile src/subprojects/Makefile src/subprojects/testmain/Makefile src/subprojects/importer/Makefile src/subprojects/particles/Makefile src/subprojects/collision_detection/Makefile"
    1072010720
    1072110721
     
    1132411324  "src/lib/shell/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/lib/shell/Makefile" ;;
    1132511325  "src/lib/gui/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/lib/gui/Makefile" ;;
     11326  "src/lib/gui/gui_gtk/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/lib/gui/gui_gtk/Makefile" ;;
    1132611327  "src/lib/tinyxml/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/lib/tinyxml/Makefile" ;;
    1132711328  "src/subprojects/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/subprojects/Makefile" ;;
  • trunk/configure.ac

    r5295 r5311  
    699699                 src/lib/shell/Makefile
    700700                 src/lib/gui/Makefile
     701                 src/lib/gui/gui_gtk/Makefile
    701702                 src/lib/tinyxml/Makefile
    702703                 src/subprojects/Makefile
  • trunk/src/Makefile.am

    r5266 r5311  
    1010orxonox_CPPFLAGS = -DIS_ORXONOX
    1111
    12 orxonox_DEPENDENCIES = lib/gui/libORXgui.a \
     12orxonox_DEPENDENCIES = lib/gui/gui_gtk/libORXgui.a \
    1313                       lib/graphics/importer/libORXimporter.a \
    1414                       lib/sound/libORXsound.a \
     
    2121                       lib/shell/libORXshell.a
    2222
    23 orxonox_LDADD = lib/gui/libORXgui.a \
     23orxonox_LDADD = lib/gui/gui_gtk/libORXgui.a \
    2424                lib/graphics/importer/libORXimporter.a \
    2525                lib/sound/libORXsound.a \
  • trunk/src/Makefile.in

    r5266 r5311  
    272272MAINSRCDIR = .
    273273orxonox_CPPFLAGS = -DIS_ORXONOX
    274 orxonox_DEPENDENCIES = lib/gui/libORXgui.a \
     274orxonox_DEPENDENCIES = lib/gui/gui_gtk/libORXgui.a \
    275275                       lib/graphics/importer/libORXimporter.a \
    276276                       lib/sound/libORXsound.a \
     
    283283                       lib/shell/libORXshell.a
    284284
    285 orxonox_LDADD = lib/gui/libORXgui.a \
     285orxonox_LDADD = lib/gui/gui_gtk/libORXgui.a \
    286286                lib/graphics/importer/libORXimporter.a \
    287287                lib/sound/libORXsound.a \
     
    451451          esac; \
    452452        done; \
    453         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/Makefile'; \
     453        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/Makefile'; \
    454454        cd $(top_srcdir) && \
    455           $(AUTOMAKE) --foreign  src/Makefile
     455          $(AUTOMAKE) --gnu  src/Makefile
    456456.PRECIOUS: Makefile
    457457Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/defs/include_paths.am

    r5160 r5311  
    1212AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics/render2D
    1313AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/particles
    14 AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui
     14AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui/gui_gtk
     15AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui/gui_opengl
    1516AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/lang
    1617AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/shell
  • trunk/src/lib/Makefile.am

    r5160 r5311  
    1 ### GTK_RELATED
    2   GTK_PROGS =
    3 
    41SUBDIRS = graphics \
    52          sound \
     
    107          tinyxml \
    118          shell \
    12           gui \
    13           $(GTK_PROGS)
     9          gui
  • trunk/src/lib/Makefile.in

    r5160 r5311  
    164164target_os = @target_os@
    165165target_vendor = @target_vendor@
    166 
    167 ### GTK_RELATED
    168 GTK_PROGS =
    169166SUBDIRS = graphics \
    170167          sound \
     
    175172          tinyxml \
    176173          shell \
    177           gui \
    178           $(GTK_PROGS)
     174          gui
    179175
    180176all: all-recursive
     
    190186          esac; \
    191187        done; \
    192         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/Makefile'; \
     188        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/Makefile'; \
    193189        cd $(top_srcdir) && \
    194           $(AUTOMAKE) --foreign  src/lib/Makefile
     190          $(AUTOMAKE) --gnu  src/lib/Makefile
    195191.PRECIOUS: Makefile
    196192Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/collision_detection/Makefile.in

    r5160 r5311  
    224224          esac; \
    225225        done; \
    226         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/collision_detection/Makefile'; \
     226        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/collision_detection/Makefile'; \
    227227        cd $(top_srcdir) && \
    228           $(AUTOMAKE) --foreign  src/lib/collision_detection/Makefile
     228          $(AUTOMAKE) --gnu  src/lib/collision_detection/Makefile
    229229.PRECIOUS: Makefile
    230230Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/event/Makefile.in

    r5160 r5311  
    212212          esac; \
    213213        done; \
    214         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/event/Makefile'; \
     214        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/event/Makefile'; \
    215215        cd $(top_srcdir) && \
    216           $(AUTOMAKE) --foreign  src/lib/event/Makefile
     216          $(AUTOMAKE) --gnu  src/lib/event/Makefile
    217217.PRECIOUS: Makefile
    218218Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/graphics/Makefile.in

    r5160 r5311  
    179179          esac; \
    180180        done; \
    181         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/graphics/Makefile'; \
     181        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/graphics/Makefile'; \
    182182        cd $(top_srcdir) && \
    183           $(AUTOMAKE) --foreign  src/lib/graphics/Makefile
     183          $(AUTOMAKE) --gnu  src/lib/graphics/Makefile
    184184.PRECIOUS: Makefile
    185185Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/graphics/importer/Makefile.in

    r5160 r5311  
    217217          esac; \
    218218        done; \
    219         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/graphics/importer/Makefile'; \
     219        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/graphics/importer/Makefile'; \
    220220        cd $(top_srcdir) && \
    221           $(AUTOMAKE) --foreign  src/lib/graphics/importer/Makefile
     221          $(AUTOMAKE) --gnu  src/lib/graphics/importer/Makefile
    222222.PRECIOUS: Makefile
    223223Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/graphics/spatial_separation/Makefile.in

    r5160 r5311  
    205205          esac; \
    206206        done; \
    207         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/graphics/spatial_separation/Makefile'; \
     207        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/graphics/spatial_separation/Makefile'; \
    208208        cd $(top_srcdir) && \
    209           $(AUTOMAKE) --foreign  src/lib/graphics/spatial_separation/Makefile
     209          $(AUTOMAKE) --gnu  src/lib/graphics/spatial_separation/Makefile
    210210.PRECIOUS: Makefile
    211211Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/gui/Makefile.am

    r5309 r5311  
    1 ### GTK_RELATED
    2   GTK_PROGS =
    3 
    4 SUBDIRS = graphics \
    5           sound \
    6           event \
    7           physics \
    8           particles \
    9           collision_detection \
    10           tinyxml \
    11           shell \
    12           gui \
    13           $(GTK_PROGS)
     1SUBDIRS = gui_gtk         
  • trunk/src/lib/gui/gui_gtk/Makefile.am

    r4428 r5311  
    1 MAINSRCDIR=../..
     1MAINSRCDIR=../../..
    22include $(MAINSRCDIR)/defs/include_paths.am
    33
  • trunk/src/lib/gui/gui_gtk/Makefile.in

    r5160 r5311  
    2424pkglibdir = $(libdir)/@PACKAGE@
    2525pkgincludedir = $(includedir)/@PACKAGE@
    26 top_builddir = ../../..
     26top_builddir = ../../../..
    2727am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
    2828INSTALL = @INSTALL@
     
    3939POST_UNINSTALL = :
    4040host_triplet = @host@
    41 subdir = src/lib/gui
     41subdir = src/lib/gui/gui_gtk
    4242DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
    4343        $(srcdir)/Makefile.in
     
    196196target_os = @target_os@
    197197target_vendor = @target_vendor@
    198 MAINSRCDIR = ../..
     198MAINSRCDIR = ../../..
    199199AM_LDFLAGS = $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
    200200noinst_LIBRARIES = libORXgui.a
     
    241241          esac; \
    242242        done; \
    243         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/gui/Makefile'; \
     243        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/gui/gui_gtk/Makefile'; \
    244244        cd $(top_srcdir) && \
    245           $(AUTOMAKE) --foreign  src/lib/gui/Makefile
     245          $(AUTOMAKE) --gnu  src/lib/gui/gui_gtk/Makefile
    246246.PRECIOUS: Makefile
    247247Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/particles/Makefile.in

    r5160 r5311  
    209209          esac; \
    210210        done; \
    211         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/particles/Makefile'; \
     211        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/particles/Makefile'; \
    212212        cd $(top_srcdir) && \
    213           $(AUTOMAKE) --foreign  src/lib/particles/Makefile
     213          $(AUTOMAKE) --gnu  src/lib/particles/Makefile
    214214.PRECIOUS: Makefile
    215215Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/physics/Makefile.in

    r5160 r5311  
    218218          esac; \
    219219        done; \
    220         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/physics/Makefile'; \
     220        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/physics/Makefile'; \
    221221        cd $(top_srcdir) && \
    222           $(AUTOMAKE) --foreign  src/lib/physics/Makefile
     222          $(AUTOMAKE) --gnu  src/lib/physics/Makefile
    223223.PRECIOUS: Makefile
    224224Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/shell/Makefile.in

    r5178 r5311  
    212212          esac; \
    213213        done; \
    214         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/shell/Makefile'; \
     214        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/shell/Makefile'; \
    215215        cd $(top_srcdir) && \
    216           $(AUTOMAKE) --foreign  src/lib/shell/Makefile
     216          $(AUTOMAKE) --gnu  src/lib/shell/Makefile
    217217.PRECIOUS: Makefile
    218218Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/sound/Makefile.in

    r5160 r5311  
    201201          esac; \
    202202        done; \
    203         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/sound/Makefile'; \
     203        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/sound/Makefile'; \
    204204        cd $(top_srcdir) && \
    205           $(AUTOMAKE) --foreign  src/lib/sound/Makefile
     205          $(AUTOMAKE) --gnu  src/lib/sound/Makefile
    206206.PRECIOUS: Makefile
    207207Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/tinyxml/Makefile.in

    r5160 r5311  
    204204          esac; \
    205205        done; \
    206         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/tinyxml/Makefile'; \
     206        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/tinyxml/Makefile'; \
    207207        cd $(top_srcdir) && \
    208           $(AUTOMAKE) --foreign  src/lib/tinyxml/Makefile
     208          $(AUTOMAKE) --gnu  src/lib/tinyxml/Makefile
    209209.PRECIOUS: Makefile
    210210Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/subprojects/Makefile.in

    r5160 r5311  
    186186          esac; \
    187187        done; \
    188         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/subprojects/Makefile'; \
     188        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/subprojects/Makefile'; \
    189189        cd $(top_srcdir) && \
    190           $(AUTOMAKE) --foreign  src/subprojects/Makefile
     190          $(AUTOMAKE) --gnu  src/subprojects/Makefile
    191191.PRECIOUS: Makefile
    192192Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/subprojects/collision_detection/Makefile.in

    r5160 r5311  
    281281          esac; \
    282282        done; \
    283         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/subprojects/collision_detection/Makefile'; \
     283        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/subprojects/collision_detection/Makefile'; \
    284284        cd $(top_srcdir) && \
    285           $(AUTOMAKE) --foreign  src/subprojects/collision_detection/Makefile
     285          $(AUTOMAKE) --gnu  src/subprojects/collision_detection/Makefile
    286286.PRECIOUS: Makefile
    287287Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/subprojects/importer/Makefile.in

    r5160 r5311  
    250250          esac; \
    251251        done; \
    252         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/subprojects/importer/Makefile'; \
     252        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/subprojects/importer/Makefile'; \
    253253        cd $(top_srcdir) && \
    254           $(AUTOMAKE) --foreign  src/subprojects/importer/Makefile
     254          $(AUTOMAKE) --gnu  src/subprojects/importer/Makefile
    255255.PRECIOUS: Makefile
    256256Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/subprojects/particles/Makefile.in

    r5160 r5311  
    267267          esac; \
    268268        done; \
    269         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/subprojects/particles/Makefile'; \
     269        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/subprojects/particles/Makefile'; \
    270270        cd $(top_srcdir) && \
    271           $(AUTOMAKE) --foreign  src/subprojects/particles/Makefile
     271          $(AUTOMAKE) --gnu  src/subprojects/particles/Makefile
    272272.PRECIOUS: Makefile
    273273Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/subprojects/testmain/Makefile.in

    r5160 r5311  
    196196          esac; \
    197197        done; \
    198         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/subprojects/testmain/Makefile'; \
     198        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/subprojects/testmain/Makefile'; \
    199199        cd $(top_srcdir) && \
    200           $(AUTOMAKE) --foreign  src/subprojects/testmain/Makefile
     200          $(AUTOMAKE) --gnu  src/subprojects/testmain/Makefile
    201201.PRECIOUS: Makefile
    202202Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
Note: See TracChangeset for help on using the changeset viewer.