1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#include "macros.inc"
#ifdef ENABLE_COINMP
STD_LIB_FILE( gid_File_Lib_Solver, solver)
#ifdef ADD_ALL_COINMP_LIBRARIES
File gid_File_Lib_CoinMP
Name = SPECIAL_NAME_VER(CoinMP,0);
PACKED_LIB_FILE_BODY;
End
File gid_File_Lib_CoinUtils
Name = SPECIAL_NAME_VER(CoinUtils,0);
PACKED_LIB_FILE_BODY;
End
File gid_File_Lib_Clp
Name = SPECIAL_NAME_VER(Clp,0);
PACKED_LIB_FILE_BODY;
End
File gid_File_Lib_Cbc
Name = SPECIAL_NAME_VER(Cbc,0);
PACKED_LIB_FILE_BODY;
End
File gid_File_Lib_Osi
Name = SPECIAL_NAME_VER(Osi,0);
PACKED_LIB_FILE_BODY;
End
File gid_File_Lib_OsiClp
Name = SPECIAL_NAME_VER(OsiClp,0);
PACKED_LIB_FILE_BODY;
End
File gid_File_Lib_Cgl
Name = SPECIAL_NAME_VER(Cgl,0);
PACKED_LIB_FILE_BODY;
End
File gid_File_Lib_CbcSolver
Name = SPECIAL_NAME_VER(CbcSolver,0);
PACKED_LIB_FILE_BODY;
End
#else
// On Windows only the CoinMP library is built and used.
// Version numbering is not used either.
File gid_File_Lib_CoinMP
Name = SPECIAL_NAME(CoinMP);
PACKED_LIB_FILE_BODY;
End
#endif
#endif
STD_LIB_FILE( gid_File_Lib_Analysis, analysis)
File gid_File_Share_Registry_Calc_Xcd
TXT_FILE_BODY;
Styles = (PACKED);
Dir = gid_Dir_Share_Registry;
Name = "calc.xcd";
End
STD_LIB_FILE( gid_File_Lib_Calc, calc)
STD_LIB_FILE( gid_File_Lib_Date, date)
STD_LIB_FILE( gid_File_Lib_Sc, sc)
STD_LIB_FILE( gid_File_Lib_Scui, scui)
STD_LIB_FILE( gid_File_Lib_Scfilt, scfilt)
STD_LIB_FILE( gid_File_Lib_Scd, scd)
#ifdef ENABLE_COINMP
STD_RES_FILE( gid_File_Res_Solver, solver)
#endif
STD_RES_FILE( gid_File_Res_Analysis, analysis)
STD_RES_FILE( gid_File_Res_Date, date)
STD_RES_FILE( gid_File_Res_Sc, sc )
File gid_File_Help_Scalc_Zip
Dir = gid_Dir_Help_Isolanguage;
ARCHIVE_TXT_FILE_BODY;
EXTRA_ALL_GOOD_HELP_LOCALIZATIONS_LANG(scalc);
Patchfiles = ();
End
// new user interface configuration files
/*
File gid_File_Share_Config_Sofficecfg_Calc_Menubar_Xml
TXT_FILE_BODY;
Styles = (PACKED);
Dir = gid_Dir_Share_Config_Sofficecfg_Scalc_Menubar;
Name = "/uiconfig/scalc/menubar/menubar.xml";
End
*/
File gid_File_Exe_Scalc
BIN_FILE_BODY;
Dir = gid_Brand_Dir_Program;
Name = EXENAME(scalc);
#ifdef WNT
FileDescription = "%PRODUCTNAME Calc";
Styles = (PACKED, PATCH_SO_NAME);
#else
Styles = (PACKED);
#endif
End
|