Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8367 in orxonox.OLD


Ignore:
Timestamp:
Jun 14, 2006, 10:49:48 AM (18 years ago)
Author:
bensch
Message:

trunk: libORXlibutil is built

Location:
trunk
Files:
3 edited
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r8293 r8367  
    575575        AC_PATH_PROG([QT_RCC], [rcc], [no], ["${QT_BIN_DIRECTORY}:${PATH}"])
    576576
    577         AC_SUBST([QT_RCC])     
     577        AC_SUBST([QT_RCC])
    578578        AC_SUBST( QT_INCLUDE_DIR )
    579579        AC_SUBST( QT_CFLAGS )
     
    582582        echo "QT_LIBS                   = $QT_LIBS"
    583583        echo "QT_CFLAGS                 = $QT_CFLAGS"
    584         echo "QT_INCLUDE_DIR    = $QT_INCLUDE_DIR"             
     584        echo "QT_INCLUDE_DIR    = $QT_INCLUDE_DIR"
    585585else
    586586        AX_CHECK_QT([${QT_PREFIX}], [QtCore QtCore4],, [http://www.trolltech.com])
     
    642642                 src/lib/Makefile
    643643                 src/lib/math/Makefile
     644                 src/lib/util/Makefile
    644645                 src/lib/graphics/Makefile
    645646                 src/lib/graphics/importer/Makefile
  • trunk/src/lib/BuildLibs.am

    r8271 r8367  
    2424                $(LIB_PREFIX)/shell/libORXshell.a \
    2525                $(LIB_PREFIX)/math/libORXmath.a \
     26                $(LIB_PREFIX)/util/libORXlibutil.a \
    2627                $(LIB_PREFIX)/libORXlibs.a
  • trunk/src/lib/Makefile.am

    r8330 r8367  
    1010                coord/p_node.cc \
    1111                \
    12                 util/substring.cc \
    13                 util/color.cc \
    14                 util/helper_functions.cc \
    15                 util/multi_type.cc \
    16                 util/executor/executor.cc \
    17                 util/executor/executor_functional.cc \
    18                 util/executor/executor_lua.cc \
    19                 \
    20                 util/loading/resource_manager.cc \
    21                 util/loading/resource.cc \
    22                 util/loading/game_loader.cc \
    23                 util/loading/load_param.cc \
    24                 util/loading/load_param_description.cc \
    25                 util/loading/factory.cc \
    26                 util/loading/dynamic_loader.cc \
    27                 \
    28                 util/filesys/file.cc \
    29                 util/filesys/directory.cc \
    30                 \
    31                 util/preferences.cc \
    32                 util/threading.cc \
    33                 util/timer.cc \
    34                 \
    3512                data/data_tank.cc
    3613
     
    4118                coord/p_node.h \
    4219                \
    43                 util/substring.h \
    44                 util/multi_type.h \
    45                 util/color.h \
    46                 util/helper_functions.h \
    47                 util/executor/executor.h \
    48                 util/executor/executor_functional.h \
    49                 util/executor/executor_xml.h \
    50                 util/executor/executor_lua.h \
    51                 util/executor/functor_list.h \
    52                 \
    53                 util/filesys/file.h \
    54                 util/filesys/directory.h \
    55                 \
    56                 util/preferences.h \
    57                 util/threading.h \
    58                 util/timer.h \
    59                 \
    60                 util/loading/resource_manager.h \
    61                 util/loading/resource.h \
    62                 util/loading/game_loader.h \
    63                 util/loading/load_param.h \
    64                 util/loading/load_param_description.h \
    65                 util/loading/factory.h \
    66                 util/loading/dynamic_loader.h \
    67                 \
    68                 util/count_pointer.h \
    69                 util/list.h \
    70                 \
    71                 \
    7220                data/data_tank.h
    7321
     
    7523        . \
    7624        math \
     25        util \
    7726        graphics \
    7827        sound \
  • trunk/src/lib/util/Makefile.am

    r8366 r8367  
    22include $(MAINSRCDIR)/defs/include_paths.am
    33
    4 noinst_LIBRARIES = libORXevent.a
     4noinst_LIBRARIES = libORXlibutil.a
    55
    6 libORXevent_a_SOURCES = event_handler.cc \
    7                         event_listener.cc \
    8                         key_mapper.cc \
    9                         key_names.cc
     6libORXlibutil_a_SOURCES = \
     7                substring.cc \
     8                color.cc \
     9                helper_functions.cc \
     10                multi_type.cc \
     11                executor/executor.cc \
     12                executor/executor_functional.cc \
     13                executor/executor_lua.cc \
     14                \
     15                loading/resource_manager.cc \
     16                loading/resource.cc \
     17                loading/game_loader.cc \
     18                loading/load_param.cc \
     19                loading/load_param_description.cc \
     20                loading/factory.cc \
     21                loading/dynamic_loader.cc \
     22                \
     23                filesys/file.cc \
     24                filesys/directory.cc \
     25                \
     26                preferences.cc \
     27                threading.cc \
     28                timer.cc
    1029
    11 
    12 noinst_HEADERS = event.h \
    13                  event_handler.h \
    14                  event_listener.h \
    15                  key_mapper.h \
    16                  key_names.h \
    17                  event_def.h
    18 
     30noinst_HEADERS = \
     31                substring.h \
     32                multi_type.h \
     33                color.h \
     34                helper_functions.h \
     35                executor/executor.h \
     36                executor/executor_functional.h \
     37                executor/executor_xml.h \
     38                executor/executor_lua.h \
     39                executor/functor_list.h \
     40                \
     41                filesys/file.h \
     42                filesys/directory.h \
     43                \
     44                preferences.h \
     45                threading.h \
     46                timer.h \
     47                \
     48                loading/resource_manager.h \
     49                loading/resource.h \
     50                loading/game_loader.h \
     51                loading/load_param.h \
     52                loading/load_param_description.h \
     53                loading/factory.h \
     54                loading/dynamic_loader.h \
     55                \
     56                count_pointer.h \
     57                list.h
Note: See TracChangeset for help on using the changeset viewer.