-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Installation | ||
|
||
Tested on Windows 2010 with VS 2019 Express, | ||
sources used : [Boost 1.7](boost_1_74_0.7z), Coin3D ans SoWin from git (check INSTALL) | ||
|
||
|
||
## install Coin3D | ||
|
||
cmake -Hcoin -Bcoin_build -G "Visual Studio 16 2019" -DCMAKE_INSTALL_PREFIX=T:\Projects\Coin -DBOOST_ROOT=G:\Projects\Libs\boost_1_74_0 -DCOIN_BUILD_DOCUMENTATION=OFF | ||
|
||
cmake --build coin_build --target ALL_BUILD --config Release -- /nologo /verbosity:minimal /maxcpucount | ||
cmake --build coin_build --target INSTALL --config Release -- /nologo /verbosity:minimal /maxcpucount | ||
|
||
|
||
## install SoWin | ||
|
||
cmake -Hsowin -Bsowin_build -G "Visual Studio 16 2019" -DCMAKE_INSTALL_PREFIX=T:\Projects\Coin -DBOOST_ROOT=G:\Projects\Libs\boost_1_74_0 -DCOIN_BUILD_DOCUMENTATION=OFF -DCMAKE_PREFIX_PATH=T:/Projects/Coin/lib/cmake/Coin-4.0.1/ | ||
|
||
cmake --build sowin_build --target ALL_BUILD --config Release -- /nologo /verbosity:minimal /maxcpucount | ||
cmake --build sowin_build --target INSTALL --config Release -- /nologo /verbosity:minimal /maxcpucount |