Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can now install with CMake and pip #197

Merged
merged 24 commits into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
6bbac90
Added CMakeLists, and CMake findPackage files
ThisIsNotANamepng Feb 21, 2024
682332a
Worked on CMakelists
ThisIsNotANamepng Mar 6, 2024
c28851c
Continued to word on CMakeLists
ThisIsNotANamepng Mar 13, 2024
d9d0513
Fixing installation locations with CMake
ThisIsNotANamepng Mar 27, 2024
a7d9315
Merge branch 'develop' of https://github.com/ofloveandhate/b2 into de…
ThisIsNotANamepng Mar 27, 2024
401eb8f
fixed a bunch of names
ofloveandhate Mar 27, 2024
e2047e8
Worked on Cmake and added instructions in FindGMP
ThisIsNotANamepng Mar 27, 2024
66a9229
Merge branch 'develop' of https://github.com/ofloveandhate/b2 into de…
ThisIsNotANamepng Mar 27, 2024
be0a315
fixed a bunch more names of things in using statements
ofloveandhate Mar 27, 2024
c8a20a4
Merge branch 'develop' of https://github.com/ofloveandhate/b2 into de…
ThisIsNotANamepng Mar 27, 2024
fa124de
Working on cmakelists
ThisIsNotANamepng Mar 30, 2024
a6edfa1
Can technically build the python library
ThisIsNotANamepng Apr 3, 2024
69a0656
Worked on pip installation and _pybertini.so location
ThisIsNotANamepng Apr 10, 2024
d449f73
Moved _pybertini to pybertini/_pybertini
ThisIsNotANamepng Apr 10, 2024
a14ff31
Can now install with CMake and Pip
ThisIsNotANamepng Apr 24, 2024
e503a3b
Added config.h.in to version control
ThisIsNotANamepng Apr 24, 2024
124592d
fixed messed up library name
ofloveandhate Apr 24, 2024
502075f
Merge branch 'develop' of https://github.com/ThisIsNotANamepng/b2 int…
ofloveandhate Apr 24, 2024
21fec9f
made suffix be .so
ofloveandhate Apr 25, 2024
223ac83
Fixed example script
ThisIsNotANamepng May 8, 2024
893f0b1
Merge branch 'develop' of https://github.com/ThisIsNotANamepng/b2 int…
ThisIsNotANamepng May 8, 2024
54642e0
added/fixed missing core test suites
ofloveandhate May 8, 2024
ba46fc0
corrected includes, adding missing `bertini2/`
ofloveandhate May 8, 2024
220a4c0
Merge branch 'develop' of https://github.com/ThisIsNotANamepng/b2 int…
ofloveandhate May 8, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,5 @@ python/src/UNKNOWN.egg-info/dependency_links.txt
python/src/UNKNOWN.egg-info/PKG-INFO
python/src/UNKNOWN.egg-info/SOURCES.txt
python/src/UNKNOWN.egg-info/top_level.txt

*/build/
7 changes: 7 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
// The following hides files created by and for the Sublime IDE
"files.exclude": {
"*.b2.sublime-project": true,
"**/*.sublime-project": true
}
}
8 changes: 6 additions & 2 deletions core/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ stamp-h1
ltmain.sh

config.h
config.h.in
#config.h.in
config.status

libtool
Expand Down Expand Up @@ -104,4 +104,8 @@ serialization_test*
test/tracking_basics/*.bak

# temporary files
*.tmp
*.tmp

.devcontainer
*.check_cache
*.yaml
Loading