Skip to content

Commit f89ee5b

Browse files
committed
Move sources to src/ dir
1 parent ddc7c16 commit f89ee5b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+7
-11
lines changed

pyproject.toml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,11 @@ test-extras = ["testing"]
4646
[tool.scikit-build.sdist]
4747
exclude = ["**/*"]
4848
include = [
49-
"/IsoSpecPy/*.py",
50-
"/IsoSpec++/*.c",
51-
"/IsoSpec++/*.h",
52-
"/IsoSpec++/*.hpp",
53-
"/IsoSpec++/*.cpp",
54-
"/src/**/*.hpp",
55-
"/src/**/*.h",
56-
"/src/**/*.cpp",
57-
"/src/**/*.cc",
49+
"/src/IsoSpecPy/*.py",
50+
"/src/IsoSpec++/*.c",
51+
"/src/IsoSpec++/*.h",
52+
"/src/IsoSpec++/*.hpp",
53+
"/src/IsoSpec++/*.cpp",
5854
"/LICENCE",
5955
"/README.md",
6056
"/pyproject.toml",

skbuild/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ set(CMAKE_CXX_EXTENSIONS OFF)
99
#find_package(PythonExtensions REQUIRED)
1010
#find_package(Python COMPONENTS Interpreter Development REQUIRED)
1111

12-
add_library(IsoSpecCppPy SHARED ../IsoSpec++/unity-build.cpp)
12+
add_library(IsoSpecCppPy SHARED ../src/IsoSpec++/unity-build.cpp)
1313
target_compile_features(IsoSpecCppPy PRIVATE cxx_std_17)
1414
#python_extension_module(IsoSpecCppPy)
1515
install(TARGETS IsoSpecCppPy LIBRARY DESTINATION IsoSpecPy)
16-
install(DIRECTORY ../IsoSpec++/ DESTINATION IsoSpecPy/IsoSpec++
16+
install(DIRECTORY ../src/IsoSpec++/ DESTINATION IsoSpecPy/IsoSpec++
1717
FILES_MATCHING PATTERN "*.h" PATTERN "*.hpp" PATTERN "*.hxx"
1818
)
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)