~ubuntu-branches/ubuntu/breezy/ace/breezy

« back to all changes in this revision

Viewing changes to apps/JAWS3/jaws3/jaws3.mpc

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad, Benjamin Montgomery, Adam Conrad
  • Date: 2005-09-18 22:51:38 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge) (0.1.2 woody)
  • Revision ID: james.westby@ubuntu.com-20050918225138-seav22q6fyylb536
Tags: 5.4.7-3ubuntu1
[ Benjamin Montgomery ]
* Added a patch for amd64 and powerpc that disables the compiler
  option -fvisibility-inlines-hidden

[ Adam Conrad ]
* Added DPATCH_OPTION_CPP=1 to debian/patches/00options to make
  Benjamin's above changes work correctly with dpatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// -*- MPC -*-
2
 
// jaws3.mpc,v 1.3 2004/01/04 10:17:31 jwillemsen Exp
3
 
 
4
 
project(JAWS3) : acelib {
5
 
    sharedname = JAWS3
6
 
    dynamicflags = JAWS_BUILD_DLL
7
 
    includes += ..
8
 
    Source_Files {
9
 
        Asynch_IO.cpp
10
 
        Concurrency.cpp
11
 
        Config_File.cpp
12
 
        Datagram.cpp
13
 
        Event_Completer.cpp
14
 
        Event_Dispatcher.cpp
15
 
        FILE.cpp
16
 
        IO.cpp
17
 
        Options.cpp
18
 
        Protocol_Handler.cpp
19
 
        Reactive_IO.cpp
20
 
        Signal_Task.cpp
21
 
        Symbol_Table.cpp
22
 
        Synch_IO.cpp
23
 
        THYBRID_Concurrency.cpp
24
 
        TPOOL_Concurrency.cpp
25
 
        TPR_Concurrency.cpp
26
 
        Task_Timer.cpp
27
 
        Templates.cpp
28
 
        Timer.cpp
29
 
        Timer_Helpers.cpp
30
 
    }
31
 
 
32
 
    Template_Files{
33
 
        Cached_Allocator_T.cpp
34
 
        Concurrency_T.cpp
35
 
    }
36
 
 
37
 
    Header_Files{
38
 
        Asynch_IO.h
39
 
        Asynch_IO_Helpers.h
40
 
        Cached_Allocator_T.h
41
 
        Concurrency.h
42
 
        Concurrency_T.h
43
 
        Config_File.h
44
 
        Datagram.h
45
 
        Event_Completer.h
46
 
        Event_Dispatcher.h
47
 
        Event_Result.h
48
 
        Export.h
49
 
        FILE.h
50
 
        IO.h
51
 
        Options.h
52
 
        Protocol_Handler.h
53
 
        Reactive_IO.h
54
 
        Reactive_IO_Helpers.h
55
 
        Signal_Task.h
56
 
        Symbol_Table.h
57
 
        Synch_IO.h
58
 
        Task_Timer.h
59
 
        THYBRID_Concurrency.h
60
 
        Timer.h
61
 
        Timer_Helpers.h
62
 
        TPOOL_Concurrency.h
63
 
        TPR_Concurrency.h
64
 
    }
65
 
 
66
 
    Inline_Files{
67
 
    }
68
 
}
69
 
 
70
 
project(JAWS3_server) : aceexe {
71
 
    includes += ..
72
 
    exename = main
73
 
    after += JAWS3
74
 
    libs  += JAWS3
75
 
    Source_Files {
76
 
      main.cpp
77
 
  }
78
 
}