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

📄 want.xml

📁 delphi7从入门到精通源代码
💻 XML
字号:
<!--
********************************************************************
*  WANT - A build management tool.                                 *
*  Copyright (c) 2001 Juancarlo Anez, Caracas, Venezuela.          *
*  All rights reserved.                                            *
*  See http://www.suigeneris.org/want/ for details.                *
*                                                                  *
********************************************************************
-->
<project
  name="want"
  basedir="."
  default="compile">

  <property name="dcu" value="${basedir}/../dcu" />

  <target name="prepare" >
    <mkdir dir="${dcu}" />
  </target>

  <target name="compile" depends="prepare">

    <dcc basedir="DiagramDemo" source="DiagramDemo.dpr">
      <dcuoutput path="${dcu}"/>
      <build     value="true"/>
      <optimize  value="true"/>
    </dcc>

    <dcc basedir="Frames1" source="Frames1.dpr">
      <dcuoutput path="${dcu}"/>
      <build     value="true"/>
      <optimize  value="true"/>
    </dcc>

    <dcc basedir="OiFontPk" source="OiFontPk.dpk">
      <dcuoutput path="${dcu}"/>
      <build     value="true"/>
      <optimize  value="true"/>
    </dcc>

    <dcc basedir="ToDoTest" source="ToDoTest.dpr">
      <dcuoutput path="${dcu}"/>
      <build     value="true"/>
      <optimize  value="true"/>
    </dcc>

  </target>

</project>

⌨️ 快捷键说明

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