Skip to content

Commit

Permalink
no boost pls
Browse files Browse the repository at this point in the history
  • Loading branch information
JarrettSJohnson committed May 12, 2024
1 parent 861643c commit 7feb08b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ jobs:
shell: cmd
run: |
git clone --depth 1 https://github.com/rcsb/mmtf-cpp.git
cp -R mmtf-cpp/include/mmtf* %CONDA_ROOT%/include/
cp -R mmtf-cpp/include/mmtf* %CONDA_ROOT%/Library/include/
git clone --depth 1 --single-branch --branch cpp_master https://github.com/msgpack/msgpack-c.git
cp -R msgpack-c/include/msgpack* %CONDA_ROOT%/include/
cp -R msgpack-c/include/msgpack* %CONDA_ROOT%/Library/include/
- name: Build PyMOL
shell: cmd
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,10 @@ def make_launch_script(self):
def_macros += [("_PYMOL_NO_MSGPACKC", None)]
else:
if options.use_msgpackc == 'c++11':
def_macros += [("MMTF_MSGPACK_USE_CPP11", None)]
def_macros += [
("MMTF_MSGPACK_USE_CPP11", None),
("MSGPACK_NO_BOOST", None),
]
else:
libs += ['msgpackc']

Expand Down

0 comments on commit 7feb08b

Please sign in to comment.