Move dlls/ to modules/

This commit is contained in:
xPaw
2015-03-13 15:18:47 +02:00
parent 54c978addb
commit e09f434ed8
365 changed files with 2233 additions and 2233 deletions

View File

@ -0,0 +1,22 @@
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
import os.path
binary = AMXX.Program(builder, 'WinCSX')
binary.compiler.includes += [
os.path.join(builder.currentSourcePath, 'resources'),
]
binary.compiler.defines += ['_MBCS']
binary.compiler.linkflags += [
'comctl32.lib',
]
binary.sources = [
'CRank.cpp',
'WinCSX.cpp',
'stdafx.cpp',
'resources/WinCSX.rc',
]
AMXX.csx_app = builder.Add(binary)