File: windres.xml

package info (click to toggle)
gprbuild 2018-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 6,248 kB
  • sloc: ada: 68,368; xml: 4,043; makefile: 423; sh: 365; ansic: 97; cpp: 89; fortran: 62
file content (23 lines) | stat: -rw-r--r-- 620 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" ?>
<gprconfig>
   <!--  This package provides the rules to handle Windows resource files -->

   <configuration>
     <compilers>
       <compiler language="WinRes" />
     </compilers>
     <config>
   package Compiler is
      for Driver ("WinRes") use "${PREFIX(WinRes)}windres";
      for Leading_Required_Switches ("WinRes") use ("-i");
      for Object_File_Suffix ("WinRes") use ".coff";
      for Object_File_Switches ("WinRes") use ("-o", "");
   end Compiler;

   package Naming is
      for Body_Suffix ("WinRes") use ".rc";
   end Naming;
     </config>
   </configuration>

</gprconfig>