-
Notifications
You must be signed in to change notification settings - Fork 461
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add specific build instructions #15
base: master
Are you sure you want to change the base?
Changes from 5 commits
7e95bad
47ac49e
79107f5
97aeff1
60bb7eb
3c5d1a1
1630dee
9291924
88b95fa
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Windows | ||
Windows => Use precompiled binary, or compile it with VS2008/2010 (Express or pro, Pro will allow you to enable Opemp in CMVS) | ||
=> Use CMake GUI in order to generate the Visual Studio project file (in ./program you will find the main CMakeLists.txt). | ||
|
||
# Linux compilations (Ubuntu used as example) | ||
``` | ||
#Prepare and empty machine for building: | ||
sudo apt-get update -qq && sudo apt-get install -qq | ||
sudo apt-get -y install git jpeg boost boost-graph | ||
git clone https://github.com/pmoulon/CMVS-PMVS | ||
mkdir CMVS-PMVS_build && cd CMVS-PMVS_build | ||
cmake ../CMVS-PMVS/program | ||
make | ||
sudo make install | ||
|
||
=> Openmp is not activated yet. Add openmp in the cmvs link option and define the _OPENMP cxx flags | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This step can be performed in the CMakeLists.txt There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you are referring to openmp I guess? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, something similar too https://github.com/openMVG/openMVG/blob/master/src/CMakeLists.txt#L117 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I just copy and pasted that line from the previous readme file, but I may look into it later. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See https://github.com/mad-de/CMVS-PMVS/commit/1630deeb713ce78fad9344d293cfdbf8efa502c1 |
||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and -> an