?? sconscript
字號:
Import('*')
env2 = env.Copy()
# Program Debug Library
env2['PDB'] = 'LucidEncryption' + build_name_suffix + '.pdb'
env2.Append(CPPFLAGS = ' /Fd' + Dir('.').path + '/vc70.pdb')
# Dependent libraries
env2.Append(LIBS = [
'LucidSystem' + build_name_suffix,
'LucidSystemThread' + build_name_suffix,
'libeay32' + build_name_suffix,
'ssleay32' + build_name_suffix])
# Build library
env2.Append(CCFLAGS = ' /D LUCID_ENCRYPTION_EXPORTS')
sources = SGlob('*.cpp')
lib = env2.SharedLibrary('LucidEncryption' + build_name_suffix, sources)
# Install include files
inc = SGlob('*.h')
env.Alias('install', env.Install(install_inc_path + 'Lucid/Encryption', inc))
Return('lib')
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -