Skip to content
Snippets Groups Projects
Commit f495975f authored by Richard Torenvliet's avatar Richard Torenvliet
Browse files

Add halide build scripts, note that we are not yet using these

parents 8c752d54 f6eb91a4
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
rm -rf build/
mkdir -p build
(cd build; \
cmake .. \
-DUSE_PYTHON=2 \
-DHALIDE_LIBRARIES=../../build/bin/libHalide.so \
-DHALIDE_INCLUDE_DIR=../../build/include/ \
-DHALIDE_ROOT_DIR=../../build/ \
-DPYTHON_LIBRARY=/usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/libpython2.7.dylib;\
make -j8
)
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment