Skip to content
Snippets Groups Projects
Commit a7e79c66 authored by Dilawar Singh's avatar Dilawar Singh
Browse files

Script to build mac bundle using cmake [skip ci]

parent 341fab30
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
echo "Create a bundle on MAC"
mkdir -p _build
(
cd _build
cmake -DCMAKE_INSTALL_PREFIX=_install ..
make -j4
cpack -G Bundle
)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment