This commit is contained in:
2018-05-04 16:45:37 +03:00
parent 9269bde518
commit 2be44de710
6 changed files with 23 additions and 20 deletions

View File

@@ -39,6 +39,9 @@ const config = new Project.Config({
'src/common/haxe',
'src-gen/haxe',
],
assets: [
'src/client/resources'
],
macros: [
`CompilationOption.set('build','${dateformat(new Date(), 'yyyy-mm-dd HH:MM:ss')}')`
]
@@ -57,7 +60,6 @@ const client = new Project(
config.branch({
name: 'client',
sources: ['src/client/haxe'],
assets: ['src/client/resources'],
main: 'ru.m.tankz.Client',
}),
module.exports.generate
@@ -72,7 +74,6 @@ const editor = new Project(
config.branch({
name: 'editor',
sources: ['src/client/haxe', 'src/editor/haxe'],
assets: ['src/client/resources'],
main: 'ru.m.tankz.editor.Editor',
meta: {filename: 'editor'}
})