Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
LinZhihao-723 authored Apr 15, 2024
1 parent 30130f9 commit 64cf560
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@
from setuptools import setup, Extension
from typing import List, Optional, Tuple

clp_src_root: str = "src/clp/components/core/src/clp"
clp_submodule_root: str = "src/clp/components/core/submodules"
clp_ffi_py_src_root: str = "src/clp_ffi_py"
cpp_src_root: str = "src"
clp_src_root: str = f"{cpp_src_root}/clp/components/core/src/clp"
clp_submodule_root: str = f"{cpp_src_root}/clp/components/core/submodules"
clp_ffi_py_src_root: str = f"{cpp_src_root}/clp_ffi_py"

ir_native: Extension = Extension(
name="clp_ffi_py.ir.native",
language="c++",
include_dirs=[
"src",
cpp_src_root,
clp_src_root,
clp_submodule_root,
],
Expand Down

0 comments on commit 64cf560

Please sign in to comment.