-
Notifications
You must be signed in to change notification settings - Fork 0
/
MakefileConfig.win32
87 lines (69 loc) · 3.22 KB
/
MakefileConfig.win32
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
#
# MICO --- an Open Source CORBA implementation
# Copyright (c) 1997-2008 by The Mico Team
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this library; if not, write to the Free
# Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# For more information, visit the MICO Home Page at
# http://www.mico.org/
#
!ifndef MANUALLY_SET_CONFIG_ON
MANUALLY_SET_CONFIG_ON = 1
#################################################################################################################
# MANUALLY SET Configuration
#
# WARNING: TOUCH THIS FILE ONLY IF YOU KNOW WHAT YOU ARE DOING. IF YOU ARE NOT SURE, LEAVE IT LIKE IT IS.
##################################################################################################################
# Current Version(clear if you want old behaviour)
VERSION = 2313
# define if you want a release build
RELEASE_BUILD = 1
#this contains MICO added paths. Do not modify it in any way.
MPATH =
# define this if you want to use Precompiled headers.
# You better have enough space on device because you need more than 30Mb
#FAST_PCH = 1
# Adapted by Sorin Mustaca <[email protected]>
# Download and compile the OpenSSL sources. Execute the script install_openssl.bat to copy the DLLs into win32-bin
# and the libraries in win32-bin\lib.
# If both the libs and headers are found, then MICO will be automatically SSL-enabled.
#
#NOTE: CSIv2 will be automatically enabled if you have SSL
#this file is generate by the checkssl.bat script
!include makevars.win32.ssl
# PTHREADS adaptation by Sorin Mustaca <[email protected]>
#
# MICO is able to be compiled and run in multi-threaded environment on
# top of Win32 OS by using posix threads "emulation" layer which is
# provided by POSIX Threads for Win32 project. For more information
# about this project and for sources of pthreads library please look at
# http://sources.redhat.com/pthreads-win32/
#
# In order to compile MICO with pthreads first compile the library you
# want to use: PthreadsVC(no exception), PthreadsVCE(C++ EH) and/or
# PthreadsVSE(MSVC Structured EH). Please read 'README' file from
# pthreads package before doing any modification here. If you have
# pthreads library compiled and ready, install the dlls into win32-bin
# and the libs into win32-bin\lib (or let the build system do it automatically)
# If the libs are found, then MICO will be automatically compiled as MT-enabled.
#
# If you prefer one of the builds and not the automatic choice, then uncomment here
# this line
!include makevars.win32.pth
# uncomment following line if you want to compile MICO with MicoCCM support
#USE_CCM = 1
#setting for detecting the right version of VSTUDIO
!include vstudio.win32
!endif