!T (WAF) Sync WAF with CMake
[CRYENGINE.git] / Code / Sandbox / Plugins / EditorSubstance / wscript
blobed3d87361b667e32ce259b8a0c34d5e50e562bbb
1 from waflib.TaskGen import feature
2 from waflib.Utils import run_once
4 def build(bld): 
5         bld.CryEditorPlugin(
6                 target     = 'EditorSubstance',
7                 vs_filter  = 'Sandbox/Plugins',
8                 file_list  = 'editorsubstance.waf_files',
9                 pch        = 'StdAfx.cpp',
10                 
11                 module_extensions = ['substance'],
12                 
13                 includes        = [ Path('Code/Sandbox/Plugins/MFCToolsPlugin'),
14                                                 Path('Code/Sandbox/Libs/CrySubstance')],
15                                                 
16                 use                     = [ 'MFCToolsPlugin', 'CrySubstance' ]
17         )
18