Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
feat(build): Make setup.py sdist functional (#53)
Browse files Browse the repository at this point in the history
* feat(build): Make `setup.py sdist` functional

One step closer to a functional Tourniquet package.
  • Loading branch information
woodruffw authored Nov 12, 2020
1 parent 0440487 commit afba079
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ __pycache__/
extractor.so
.coverage
html/
dist/
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ message(STATUS "Found LLVM ${LLVM_PACKAGE_VERSION}")
message(STATUS "Using LLVMConfig.cmake in: ${LLVM_DIR}")

if(("${LLVM_PACKAGE_VERSION}" VERSION_LESS 9.0.0)
OR ("${LLVM_PACKAGE_VERSION}" VERSION_GREATER 11))
OR ("${LLVM_PACKAGE_VERSION}" VERSION_GREATER_EQUAL 12))
message(FATAL_ERROR "Unsupported LLVM version: ${LLVM_PACKAGE_VERSION}")
endif()

Expand Down
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include transformer/*.cpp
include transformer/*.h
include CMakeLists.txt
include dev-requirements.txt

0 comments on commit afba079

Please sign in to comment.