-
-
Notifications
You must be signed in to change notification settings - Fork 78
Home
Etienne edited this page Jul 20, 2016
·
25 revisions
Welcome to the node-occ wiki!
- make sure you have at least Microsoft Visual Studio 2015 or Visual Studio Express installed.
- download and install CMAKE http://www.cmake.org/download/ (the tutorial assumes that cmake is installed in c:\tools\cmake)
- install node-js 32 bits version 0.12 from www.nodejs.org
- start a CMD dos box with VisualStudio 32 bits environment set
- In the VisualStudio 32bis CMD box, execute the following script, to fetch, compile and install OpenCascade Libraries
cd c:\
git clone https://github.com/tpaviot/oce.git
cd oce
git checkout OCE-0.17.2
cd ..
# git submodule update --init --recursive
mkdir oce_build
cd oce_build
c:\tools\cmake\bin\cmake -D OCE_INSTALL_PREFIX:STRING='C:/OCE-0.17.2' -D OCE_DRAW:BOOLEAN=FALSE -D OCE_OCAF:BOOLEAN=FALSE -D OCE_VISUALISATION:BOOLEAN=FALSE -D OCE_DISABLE_X11:BOOLEAN=TRUE -D OCE_USE_PCH:BOOLEAN=TRUE ../oce
msbuild oce.sln /m
msbuild oce.sln /p:Configuration=Release /m
set VisualStudioVersion=14.0
msbuild INSTALL.vcxproj /p:Configuration=Release /m
- In the VisualStudio 32bits CMD box, execute the following script
mkdir c:\projects
cd c:\projects
git clone https://github.com/erossignon/node-occ
cd node-occ
SET CL=/Ic:\OCE-0.17.2\include\oce
SET LINK=/LIBPATH:c:\OCE-0.17.2\Win32\lib
PATH c:\OCE-0.17.2\Win32\bin;%PATH%
npm install
- verify that node-occ is up and running by launching the tests
npm test
- start the Node-occ web console:
cd c:\projects\node-occ\sample
node app.js
- visit http://localhost:3000 with Chrome or Firefox