|
|
请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!
您需要 登录 才可以下载或查看,没有账号?注册
x
1. Using Visual Studio - create a new project using the NX Open AppWizard.
* b! K ~# Q0 s# b0 D, A) m This is described in the NX Open for C/C++ -> Open C Reference Guide -> 4 k, }' I, o9 T: B" T! J! d3 j
Overview -> setting up your system. The image being created is an external6 e: W0 c" H- _% n4 D, W9 b( j
User Function program using C++ and Open C++ calls.
; c/ Z3 U" D6 D2 p; \ 2. Make sure configuration type of the project is Dynamic Library (.dll) . Go to 9 _7 d. L1 O" G/ r9 S$ U- R& H- A# Y
Project->Properties (Alt + F7), select/expand Configuration Properties->General and set1 y" J1 E; U% ?" ^0 Q: l5 m
the "Configuration type" to Dynamic Library (.dll).: ~! d& u+ Z& E) u7 Y0 \+ P5 J
3. Make sure the output file is generated with extension .dll. Go to
- r# z( o8 J. b. t, f# h0 x Project->Properties (Alt + F7), select/expand Configuration Properties->Linker and set the
: u2 v' y7 h. {# V0 M1 A* p "Output File" with the .dll extension.$ }$ |# J" A, }6 j% i; h4 [: ^
4. Add the OntSelectionBoilerPlate.cpp file by selecting the Project! z3 m9 J# D6 a* o& _# L) a! ~
pulldown and select "Add Existing Item...". Select the file using the popup/ @% e% ^. {1 }1 A
window.
- e: t7 M2 W, x8 o: b 5. Add $(UGII_BASE_DIR)\ugopenpp as one of the include directories. Go to Tools->Options, 6 v1 Z; h; o$ j- [( X, w3 C* F3 y
select/expand Projects and Solution->VC++ Directories. On right side window select
5 s5 f3 k# d% f "Include files" option available under "Show Directories for:" pulldown. Add $(UGII_BASE_DIR)\ugopenpp 5 }' g. k0 o" h3 L! w4 G4 \4 K
to the existing list.
m& d: e4 X) O6 i 6. Add libopenpp.lib and libvmathpp.lib libraries to the project. Go to Project->Properties (Alt + F7),
' H2 l( e0 d) F select/expand Configuration Properties->Linker->Input. Provide libopenpp.lib and libvmathpp.lib
, x* U2 P2 u. X/ `! g in the "Additional Dependencies" row.
4 G! J/ L+ F% W1 v w/ s 7. Build the external image by going to the Build menu and selecting either
* z' i( ~, n4 J8 B0 ]* X- J; ? "Build Solution" or "Rebuild Solution".
p* l0 k, j/ A7 j5 f This will create an Dynamic Library called OntSelectionBoilerPlate.dll in the Debug directory.
9 M0 C6 b8 T; y
* ?: ]% f% F3 D0 e+ ^6 C6 Z" a |
|