⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sconscript

📁 这是一个基于VS2003开发的数据加密和解密的程序
💻
字号:
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 + -