2224580a41
a) wxBase compilation/installation/dist works, added wxBase.spec b) list of files is include by Makefile.in, not embedded into it c) configure runs "subconfigures" for samples/demos/utils 2. wxTokenizer class from Gregory Pietsch git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5761 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
31 lines
1.0 KiB
Perl
31 lines
1.0 KiB
Perl
#!################################################################################
|
|
#! File: base.t
|
|
#! Purpose: tmake template file from which src/rpmfiles.lst containing the
|
|
#! list of files for wxBase.spec RPM generation script is generated
|
|
#! Author: Vadim Zeitlin
|
|
#! Created: 28.01.00
|
|
#! Version: $Id$
|
|
#!################################################################################
|
|
#${
|
|
IncludeTemplate("filelist.t");
|
|
|
|
foreach $file (sort keys %wxWXINCLUDE) {
|
|
next unless $wxWXINCLUDE{$file} =~ /\bB\b/;
|
|
|
|
$project{"BASE_HEADERS"} .= "include/wx/" . $file . " "
|
|
}
|
|
|
|
foreach $file (sort keys %wxUNIXINCLUDE) {
|
|
next unless $wxWXINCLUDE{$file} =~ /\bB\b/;
|
|
|
|
$project{"BASE_HEADERS"} .= "include/wx/unix/" . $file . " "
|
|
}
|
|
|
|
foreach $file (sort keys %wxPROTOCOLINCLUDE) {
|
|
next unless $wxPROTOCOLINCLUDE{$file} =~ /\bB\b/;
|
|
|
|
$project{"BASE_HEADERS"} .= "include/wx/protocol/" . $file . " "
|
|
}
|
|
#$}
|
|
#$ ExpandGlue("BASE_HEADERS", "/usr/", "\n/usr/", "");
|