NSIS/Contrib/Library/RegTool/SConscript
anders_k d80b364e1d TCHAR cannot be used in RegTool because it must be able to run on Win9x.
RegTool now implements A and W functions in the same binary. Bitness mixing is still problematic.


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6858 212acab6-be3b-0410-9dea-997c60f758d6
2017-05-12 00:19:23 +00:00

17 lines
249 B
Python

target = 'RegTool'
files = Split("""
RegTool.cpp
""")
libs = Split("""
kernel32
oleaut32
advapi32
user32
ole32
""")
Import('BuildUtil')
BuildUtil(target, files, libs, entry = 'NSISWinMainNOCRT', nodeflib = True, file_name = 'RegTool.bin')