source: GTP/trunk/App/Demos/Illum/Shark3D/version164x12u/IllumDemo/res_targets.cfg @ 2196

Revision 2196, 3.6 KB checked in by szirmay, 17 years ago (diff)
Line 
1///////////////////////////////////////////////////////////////////////////////
2//
3//      ##  ######
4//       ######  ###
5//  ## ###############        Shark 3D Engine (www.shark3d.com)
6//   ########## # # #
7//    ########                Copyright (c) 1996-2006 Spinor GmbH.
8//   ######### # # #          All rights reserved.
9//  ##   ##########
10//      ##
11//
12///////////////////////////////////////////////////////////////////////////////
13
14// This file configures a Shark3D project and is used by several tools.
15//
16// File syntax: Snake File Format, see documentation for details.
17// Each field has a name and none, one or more values of type integer,
18// float, string or chunk.
19//   //         = Comment until end of line.
20//   /* xxx */  = Long comment
21//   { xxx }    = Chunk containing fields again.
22//   &          = Concat strings (to split strings over more than one line).
23//
24// File content: See comments below and source code of the player.
25// - Keybord mapping see near the end of this file.
26// - The startup resource of the project is defined in the entry "startup".
27
28///////////////////////////////////////////////////////////////////////////////
29
30res
31{   
32    src_dir "src/res/"
33    bin_dir "bin/res/"
34    info_prefix "res:"
35    // Exclude pathes containing a "$" character.
36    include_pat "!*$*&!*.$$$&!*.svn&!*.svn/*"
37
38    targets
39    {
40        src_suffix ".s3d_actor"
41        bin_suffix ".s3d_actor_run"
42        can_copy 1
43    }
44    {
45        src_suffix ".pa"
46        bin_suffix ".par"
47        can_copy 1
48    }
49    {
50        src_suffix ".s3d_shader"
51        bin_suffix ".s3d_shader_run"
52        can_copy 1
53    }
54    {
55        src_suffix ".s3d_shaderprog"
56        bin_suffix ".s3d_shaderprog_run"
57        can_copy 1
58    }
59    {
60        src_suffix ".s3d_inst"
61        bin_suffix ".s3d_inst_run"
62        can_copy 1
63    }
64    {
65        src_suffix ".s3d_model"
66        bin_suffix ".s3d_model_run"
67        can_copy 0
68    }
69    {
70        src_suffix ".s3d_pospath"
71        bin_suffix ".s3d_pospath_run"
72        can_copy 1
73    }
74    {
75        src_suffix ".s3d_shadercode"
76        bin_suffix ".s3d_shadercode_run"
77        can_copy 1
78    }
79    {
80        src_suffix ".s3d_boneanim"
81        bin_suffix ".s3d_boneanim_run"
82        can_copy 0
83    }
84    {
85        src_suffix ".s3d_bonemotion"
86        bin_suffix ".s3d_bonemotion_run"
87        can_copy 0
88    }
89    {
90        src_suffix ".s3d_pvs"
91        bin_suffix ".s3d_pvs_run"
92        can_copy 0
93    }
94    {
95        src_suffix ".s3d_perch"
96        bin_suffix ".s3d_perch_run"
97        can_copy 0
98    }
99    /*
100    {
101        src_suffix ".java"
102        bin_suffix ".class"
103        can_copy 0
104    }
105    */
106    {
107        src_suffix ".tga"
108        bin_suffix ".tga"
109        can_copy 1
110    }
111    {
112        src_suffix ".bmp"
113        bin_suffix ".bmp"
114        can_copy 1
115    }
116    {
117        src_suffix ".png"
118        bin_suffix ".png"
119        can_copy 1
120    }
121    {
122        src_suffix ".jpg"
123        bin_suffix ".jpg"
124        can_copy 1
125    }
126    {
127        src_suffix ".tif"
128        bin_suffix ".tif"
129        can_copy 1
130    }
131    {
132        src_suffix ".dds"
133        bin_suffix ".dds"
134        can_copy 1
135    }
136    {
137        src_suffix ".avi"
138        bin_suffix ".avi"
139        can_copy 1
140    }
141    {
142        src_suffix ".wav"
143        bin_suffix ".wav"
144        can_copy 1
145    }
146    {
147        src_suffix ".vag"
148        bin_suffix ".vag"
149        can_copy 1
150    }
151    {
152        src_suffix ".ttf"
153        bin_suffix ".ttf"
154        can_copy 1
155    }
156}
Note: See TracBrowser for help on using the repository browser.