source: GTP/trunk/App/Demos/Geom/Shark3D/clod_head_demo_win32/res_targets.cfg @ 2236

Revision 2236, 3.5 KB checked in by gumbau, 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        src_suffix ".tga"
101        bin_suffix ".tga"
102        can_copy 1
103    }
104    {
105        src_suffix ".bmp"
106        bin_suffix ".bmp"
107        can_copy 1
108    }
109    {
110        src_suffix ".png"
111        bin_suffix ".png"
112        can_copy 1
113    }
114    {
115        src_suffix ".jpg"
116        bin_suffix ".jpg"
117        can_copy 1
118    }
119    {
120        src_suffix ".tif"
121        bin_suffix ".tif"
122        can_copy 1
123    }
124    {
125        src_suffix ".dds"
126        bin_suffix ".dds"
127        can_copy 1
128    }
129    {
130        src_suffix ".avi"
131        bin_suffix ".avi"
132        can_copy 1
133    }
134    {
135        src_suffix ".wav"
136        bin_suffix ".wav"
137        can_copy 1
138    }
139    {
140        src_suffix ".vag"
141        bin_suffix ".vag"
142        can_copy 1
143    }
144    {
145        src_suffix ".ttf"
146        bin_suffix ".ttf"
147        can_copy 1
148    }
149    {
150          src_suffix ".mesh"
151          bin_suffix ".mesh"
152          can_copy 1
153    }
154}
Note: See TracBrowser for help on using the repository browser.