Add Ubuntu 16.04.4 LTS build example
parent
1cdda64e48
commit
1b38833823
|
@ -51,3 +51,51 @@ Here is the snapshot of the command line of one build, you may use different def
|
||||||
$ cd /Users/jeremy/Repositories/dust3d
|
$ cd /Users/jeremy/Repositories/dust3d
|
||||||
$ qmake -spec macx-xcode
|
$ qmake -spec macx-xcode
|
||||||
Open dust3d.xcodeproj in Xcode and build
|
Open dust3d.xcodeproj in Xcode and build
|
||||||
|
|
||||||
|
* Ubuntu
|
||||||
|
|
||||||
|
.. code-block:: sh
|
||||||
|
|
||||||
|
;Install Rust
|
||||||
|
$ curl https://sh.rustup.rs -sSf | sh ;Add ~/.cargo/bin to PATH after finishing install
|
||||||
|
|
||||||
|
;Install Qt5
|
||||||
|
$ sudo apt-get install --reinstall qtchooser
|
||||||
|
$ sudo apt-get install qtbase5-dev
|
||||||
|
|
||||||
|
;Prepare compile environment for CGAL-4.11.1
|
||||||
|
$ sudo apt-get install libcgal-dev ; This is not the latest version, will encounter compiler error when build the Dust3D with this version, but helps resolve internal dependencies of CGAL for you
|
||||||
|
$ sudo apt install cmake
|
||||||
|
|
||||||
|
;Install CGAL-4.11.1, other versions of CGAL haven't test with Dust3D
|
||||||
|
$ wget https://github.com/CGAL/cgal/releases/download/releases/CGAL-4.11.1/CGAL-4.11.1.zip
|
||||||
|
$ unzip CGAL-4.11.1.zip
|
||||||
|
$ cd CGAL-4.11.1
|
||||||
|
$ mkdir build
|
||||||
|
$ cd build
|
||||||
|
$ cmake ../
|
||||||
|
$ make
|
||||||
|
$ sudo make install
|
||||||
|
|
||||||
|
;Clone the Main project
|
||||||
|
$ cd ~/Documents
|
||||||
|
$ git clone https://github.com/huxingyi/dust3d.git
|
||||||
|
|
||||||
|
;Compile the internal dependency
|
||||||
|
$ cd ~/Desktop
|
||||||
|
$ git clone https://github.com/huxingyi/meshlite.git
|
||||||
|
$ cd meshlite
|
||||||
|
$ cargo build --release
|
||||||
|
$ cp ~/Desktop/meshlite/include/meshlite.h ~/Documents/dust3d/thirdparty/meshlite/meshlite.h
|
||||||
|
$ cp ~/Desktop/meshlite/target/release/libmeshlite.so ~/Documents/dust3d/thirdparty/meshlite/libmeshlite.so
|
||||||
|
|
||||||
|
;Compile Dust3D
|
||||||
|
$ cd ~/Documents/dust3d
|
||||||
|
$ qmake -qt=5 -v -makefile
|
||||||
|
$ make
|
||||||
|
$ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/Documents/dust3d/thirdparty/meshlite
|
||||||
|
$ ./dust3d
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
20
dust3d.pro
20
dust3d.pro
|
@ -96,6 +96,8 @@ SOURCES += src/main.cpp
|
||||||
|
|
||||||
HEADERS += src/version.h
|
HEADERS += src/version.h
|
||||||
|
|
||||||
|
QMAKE_CXXFLAGS += -std=c++11
|
||||||
|
|
||||||
win32 {
|
win32 {
|
||||||
isEmpty(BOOST_INCLUDEDIR) {
|
isEmpty(BOOST_INCLUDEDIR) {
|
||||||
BOOST_INCLUDEDIR = $$(BOOST_INCLUDEDIR)
|
BOOST_INCLUDEDIR = $$(BOOST_INCLUDEDIR)
|
||||||
|
@ -130,7 +132,7 @@ win32 {
|
||||||
MPFR_LIBDIR = $$GMP_LIBDIR
|
MPFR_LIBDIR = $$GMP_LIBDIR
|
||||||
}
|
}
|
||||||
|
|
||||||
unix {
|
macx {
|
||||||
MESHLITE_DIR = thirdparty/meshlite
|
MESHLITE_DIR = thirdparty/meshlite
|
||||||
MESHLITE_LIBNAME = meshlite
|
MESHLITE_LIBNAME = meshlite
|
||||||
GMP_LIBNAME = gmp
|
GMP_LIBNAME = gmp
|
||||||
|
@ -146,6 +148,22 @@ unix {
|
||||||
MPFR_LIBDIR = /usr/local/opt/mpfr/lib
|
MPFR_LIBDIR = /usr/local/opt/mpfr/lib
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unix:!macx {
|
||||||
|
MESHLITE_DIR = thirdparty/meshlite
|
||||||
|
MESHLITE_LIBNAME = meshlite
|
||||||
|
GMP_LIBNAME = gmp
|
||||||
|
MPFR_LIBNAME = mpfr
|
||||||
|
CGAL_LIBNAME = CGAL
|
||||||
|
BOOST_INCLUDEDIR = /usr/local/include
|
||||||
|
CGAL_INCLUDEDIR = /usr/local/include
|
||||||
|
CGAL_BUILDINCLUDEDIR = /usr/local/include
|
||||||
|
CGAL_LIBDIR = /usr/local/lib
|
||||||
|
GMP_INCLUDEDIR = /usr/local/include
|
||||||
|
GMP_LIBDIR = /usr/local/lib
|
||||||
|
MPFR_INCLUDEDIR = /usr/local/include
|
||||||
|
MPFR_LIBDIR = /usr/local/lib
|
||||||
|
}
|
||||||
|
|
||||||
INCLUDEPATH += $$MESHLITE_DIR
|
INCLUDEPATH += $$MESHLITE_DIR
|
||||||
LIBS += -L$$MESHLITE_DIR -l$$MESHLITE_LIBNAME
|
LIBS += -L$$MESHLITE_DIR -l$$MESHLITE_LIBNAME
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue