Files correlati : Commento : Spostamento in libraries delle librerie esterne di Campo per una maggiore pulizia e organizzazione git-svn-id: svn://10.65.10.50/branches/R_10_00@24150 c028cbd2-c16b-5b4b-a496-9718f37d4682
51 lines
1.8 KiB
XML
51 lines
1.8 KiB
XML
<?xml version="1.0" ?>
|
|
<!-- $Id: common_contrib.bkl 35151 2005-08-08 13:08:45Z MW $ -->
|
|
|
|
<makefile>
|
|
|
|
<if cond="not isdefined('file_common_samples_included')">
|
|
<include file="common.bkl"/>
|
|
</if>
|
|
|
|
<set var="CONTRIB_HDR_DIR" overwrite="0">$(SRCDIR)/../../include</set>
|
|
|
|
<!-- =============================================================== -->
|
|
<!-- Contrib lib helpers: -->
|
|
<!-- =============================================================== -->
|
|
|
|
<template id="wx_contrib_lib" template="wx_lib_b">
|
|
<include>$(CONTRIB_HDR_DIR)</include>
|
|
</template>
|
|
|
|
<if cond="isdefined('file_common_samples_included')">
|
|
<template id="wx_contrib_sample" template="wx_sample">
|
|
<include>$(CONTRIB_HDR_DIR)</include>
|
|
</template>
|
|
<template id="wx_contrib_util" template="wx_util">
|
|
<include>$(CONTRIB_HDR_DIR)</include>
|
|
</template>
|
|
</if>
|
|
|
|
<template id="wx_contrib_dll"
|
|
template="wx_dll_b" template_append="wx_append">
|
|
<include>$(CONTRIB_HDR_DIR)</include>
|
|
</template>
|
|
|
|
<template id="wx_contrib_headers">
|
|
<srcdir>$(CONTRIB_HDR_DIR)</srcdir>
|
|
<install-to>$(INCLUDEDIR)/wx-$(WX_RELEASE)$(WX_FLAVOUR)</install-to>
|
|
</template>
|
|
|
|
<!-- Link against one contrib library. Value must be literal! -->
|
|
<define-tag name="contrib-lib" rules="exe,dll,module">
|
|
<sys-lib>$(wxwin.libToLink(value))</sys-lib>
|
|
<ldlibs>$(wxwin.extraLdflags(value))</ldlibs>
|
|
<if cond="IS_MSVC_PRJ=='1' and MONOLITHIC=='0'">
|
|
<depends-on-dsp>
|
|
$(wxwin.makeContribDspDependency(value))
|
|
</depends-on-dsp>
|
|
</if>
|
|
</define-tag>
|
|
|
|
</makefile>
|