Commit a4f0a66c authored by Mikhail Karpenko's avatar Mikhail Karpenko
Browse files

Add build script

parent 77a40b4e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
#### doxverilog ####
The is a clone of doxverilog repository tested on Elphel projects. It will be kept in sync with the original repository on Bitbucket:
This is a clone of doxverilog repository tested on Elphel projects. It will be kept in sync with the original repository on Bitbucket:
[https://bitbucket.org/maddoxx/doxverilog.git](https://bitbucket.org/maddoxx/doxverilog.git)

Start *build.sh* to compile doxverilog.

build.sh

0 → 100755
+10 −0
Original line number Diff line number Diff line
#!/bin/bash

if [ ! -z $(which cmake) ]; then
	mkdir build
	cd build
	cmake -G "Unix Makefiles" ..
	make
else
	echo "cmake is not found, can not start compilation"
fi