⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 univ.t

📁 Wxpython Implemented on Windows CE, Source code
💻 T
字号:
#!################################################################################
#! File:    univ.t
#! Purpose: tmake template file from which src/univ/files.lst containing the
#!          list of files for wxUniversal library is generated by tmake
#! Author:  Vadim Zeitlin
#! Created: 26.06.01
#! Version: $Id: univ.t,v 1.4 2002/02/02 23:15:23 VS Exp $
#!################################################################################
#${
    #! include the code which parses filelist.txt file and initializes
    #! %wxCommon, %wxGeneric, %wxHtml, %wxUNIX, %wxGTK, %wxMOTIF and
    #! %wxOS2PM hashes.
    IncludeTemplate("filelist.t");

    #! find all our sources
    foreach $file (sort keys %wxUNIV) {
        ($fileobj = $file) =~ s/cp?p?$/\o/;

        if ( $wxUNIV{$file} =~ /Theme/ ) {
            $file = "themes/" . $file
        }

        $project{"UNIV_SOURCES"} .= "univ/" . $file . " ";
        $project{"UNIVOBJS"} .= $fileobj . " ";
    }

    #! and headers
    foreach $hdr (sort keys %wxUNIVINCLUDE) {
        $project{"UNIV_HEADERS"} .= "univ/" . $hdr . " ";
    }
#$}
# This file was automatically generated by tmake 
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE UNIV.T!
UNIV_SOURCES = \
		#$ ExpandList("UNIV_SOURCES");

UNIV_HEADERS = \
		#$ ExpandList("UNIV_HEADERS");

UNIVOBJS = \
		#$ ExpandList("UNIVOBJS");

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -