mirror of
https://github.com/MeoProject/lx-music-api-server.git
synced 2025-07-06 22:42:14 +08:00
chore (pyqdes): 合并代码仓库
This commit is contained in:
16
deps/pyqdes/setup.py
vendored
Normal file
16
deps/pyqdes/setup.py
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
from setuptools import setup, Extension
|
||||
import pybind11
|
||||
|
||||
module = Extension(
|
||||
'qdes',
|
||||
sources=['main.cpp'],
|
||||
include_dirs=[pybind11.get_include(), pybind11.get_include(user=True)],
|
||||
extra_compile_args=["-std=c++11"], # 添加编译器选项
|
||||
)
|
||||
|
||||
setup(
|
||||
name='qdes',
|
||||
version='1.0',
|
||||
description='QDES encryption/decryption module',
|
||||
ext_modules=[module],
|
||||
)
|
Reference in New Issue
Block a user