Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7275 in orxonox.OLD


Ignore:
Timestamp:
Apr 2, 2006, 8:34:49 PM (18 years ago)
Author:
bensch
Message:

compiles and links in windows

Location:
branches/shared_lib
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/shared_lib/configure.ac

    r7272 r7275  
    298298    MSBITFIELDS="-mms-bitfields"
    299299    MWINDOWS="-mwindows"
     300    LDFLAGS="$LDFLAGS "
    300301#--------#
    301302# MIN-GW #
     
    392393 Linux="yes"
    393394
     395 LDFLAGS="$LDFLAGS -rdynamic"
    394396##CPPFLAGS="-I/usr/include $CPPFLAGS"
    395397##LDFLAGS="-L/usr/lib $LDFLAGS"
     
    637639                 src/lib/Makefile
    638640                 src/lib/math/Makefile
     641                 src/lib/util/Makefile
    639642                 src/lib/graphics/Makefile
    640643                 src/lib/graphics/importer/Makefile
  • branches/shared_lib/src/Makefile.am

    r7274 r7275  
    1212
    1313orxonox_CPPFLAGS = -DIS_ORXONOX -DPKG_LIBDIR="\"$(pkglibdir)\""
    14 orxonox_LDFLAGS = --export-dynamic -ldl -rdynamic
     14orxonox_LDFLAGS = --export-dynamic
    1515##-ldl -rdynamic
    1616
  • branches/shared_lib/src/lib/BuildLibs.am

    r7264 r7275  
    44                $(LIB_PREFIX)/gui/gtk_gui/libORXgui.a \
    55                $(LIB_PREFIX)/gui/gl_gui/libORXglgui.a \
    6                 $(LIB_PREFIX)/graphics/importer/libORXimporter.la \
    76                $(LIB_PREFIX)/graphics/libORXgraphics.a \
    8                 $(LIB_PREFIX)/sound/libORXsound.a \
    97                $(LIB_PREFIX)/event/libORXevent.a \
    108                $(LIB_PREFIX)/physics/libORXphysics.a \
     
    1816                $(LIB_PREFIX)/parser/ini_parser/libIniParser.a \
    1917                $(LIB_PREFIX)/shell/libORXshell.a \
     18                $(LIB_PREFIX)/util/libORXlibutil.a \
     19                $(LIB_PREFIX)/sound/libORXsound.a \
     20                $(LIB_PREFIX)/graphics/importer/libORXimporter.la \
    2021                $(LIB_PREFIX)/math/libORXmath.a \
    2122                $(LIB_PREFIX)/libORXlibs.a
  • branches/shared_lib/src/lib/Makefile.am

    r7256 r7275  
    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                 \
    18                 util/loading/resource_manager.cc \
    19                 util/loading/resource.cc \
    20                 util/loading/game_loader.cc \
    21                 util/loading/load_param.cc \
    22                 util/loading/load_param_description.cc \
    23                 util/loading/factory.cc \
    24                 util/loading/dynamic_loader.cc \
    25                 util/preferences.cc \
    2612                \
    2713                data/data_tank.cc
     
    3319                coord/p_node.h \
    3420                \
    35                 util/substring.h \
    36                 util/multi_type.h \
    37                 util/color.h \
    38                 util/helper_functions.h \
    39                 util/executor/executor.h \
    40                 util/executor/executor_specials.h \
    41                 util/executor/functor_list.h \
    42                 util/preferences.h \
    43                 \
    44                 util/loading/resource_manager.h \
    45                 util/loading/resource.h \
    46                 util/loading/game_loader.h \
    47                 util/loading/load_param.h \
    48                 util/loading/load_param_description.h \
    49                 util/loading/factory.h \
    50                 util/loading/dynamic_loader.h \
    51                 \
    52                 util/count_pointer.h \
    53                 util/list.h \
    54                 \
    5521                \
    5622                data/data_tank.h
     
    5925        . \
    6026        math \
     27        util \
    6128        graphics \
    6229        sound \
  • branches/shared_lib/src/lib/util/Makefile.am

    r7274 r7275  
    22include $(MAINSRCDIR)/defs/include_paths.am
    33
    4 noinst_LIBRARIES = libORXnet.a
     4noinst_LIBRARIES = libORXlibutil.a
    55
    6 libORXnet_a_SOURCES = synchronizeable.cc \
    7                       network_manager.cc \
    8                       shared_network_data.cc \
    9                       network_socket.cc \
    10                       connection_monitor.cc \
    11                       network_stream.cc \
    12                       data_stream.cc \
    13                       network_protocol.cc \
    14                       server_socket.cc \
    15                       handshake.cc \
    16                       network_game_manager.cc \
    17                       converter.cc
     6libORXlibutil_a_SOURCES = \
     7                substring.cc \
     8                color.cc \
     9                helper_functions.cc \
     10                multi_type.cc \
     11                executor/executor.cc \
     12                \
     13                loading/resource_manager.cc \
     14                loading/resource.cc \
     15                loading/game_loader.cc \
     16                loading/load_param.cc \
     17                loading/load_param_description.cc \
     18                loading/factory.cc \
     19                loading/dynamic_loader.cc \
     20                preferences.cc
    1821
    1922
    2023
     24noinst_HEADERS = \
     25                substring.h \
     26                multi_type.h \
     27                color.h \
     28                helper_functions.h \
     29                executor/executor.h \
     30                executor/executor_specials.h \
     31                executor/functor_list.h \
     32                preferences.h \
     33                \
     34                loading/resource_manager.h \
     35                loading/resource.h \
     36                loading/game_loader.h \
     37                loading/load_param.h \
     38                loading/load_param_description.h \
     39                loading/factory.h \
     40                loading/dynamic_loader.h \
     41                \
     42                count_pointer.h \
     43                list.h
    2144
    22 noinst_HEADERS = synchronizeable.h \
    23                  network_manager.h \
    24                  shared_network_data.h \
    25                  network_socket.h \
    26                  connection_monitor.h \
    27                  network_stream.h \
    28                  data_stream.h \
    29                  network_protocol.h \
    30                  server_socket.h \
    31                  handshake.h \
    32                  network_game_manager.h \
    33                  converter.h \
    34                  netdefs.h
    35 
    36 
Note: See TracChangeset for help on using the changeset viewer.