2017-05-10 22:34:42 +05:00
|
|
|
set(gui_sources
|
|
|
|
gui.cpp ngpkg.cpp demoview.cpp parallelfunc.cpp
|
|
|
|
../libsrc/stlgeom/stlpkg.cpp ../libsrc/visualization/visualpkg.cpp
|
|
|
|
../libsrc/csg/csgpkg.cpp ../libsrc/geom2d/geom2dpkg.cpp
|
|
|
|
../libsrc/occ/occpkg.cpp ../libsrc/occ/vsocc.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
set(netgen_sources ngappinit.cpp onetcl.cpp )
|
2015-03-06 18:59:14 +05:00
|
|
|
|
|
|
|
if(USE_GUI)
|
2015-10-21 20:50:00 +05:00
|
|
|
if(WIN32)
|
|
|
|
# add icon to netgen executable
|
|
|
|
enable_language(RC)
|
|
|
|
set(netgen_sources ${netgen_sources} ../windows/netgen.rc)
|
2017-02-27 20:29:57 +05:00
|
|
|
# Don't use ccache here due to incompatiblity with the resource compiler
|
|
|
|
set_directory_properties(PROPERTIES RULE_LAUNCH_COMPILE "")
|
2015-10-21 20:50:00 +05:00
|
|
|
endif(WIN32)
|
2015-03-06 18:59:14 +05:00
|
|
|
|
2017-05-10 22:34:42 +05:00
|
|
|
add_library(gui SHARED ${gui_sources})
|
2017-05-11 14:21:55 +05:00
|
|
|
add_executable(netgen ${netgen_sources})
|
2017-05-10 22:34:42 +05:00
|
|
|
|
2017-05-11 14:21:55 +05:00
|
|
|
target_link_libraries( gui PUBLIC nglib ${TK_LIBRARY} ${TCL_LIBRARY} ${ZLIB_LIBRARIES} ${JPEG_LIBRARIES} ${FFMPEG_LIBRARIES} ${X11_X11_LIB} ${OCC_LIBRARIES} )
|
2017-05-10 22:34:42 +05:00
|
|
|
target_link_libraries( gui PRIVATE ${LIBTOGL})
|
|
|
|
|
2017-05-11 14:21:55 +05:00
|
|
|
target_link_libraries( netgen nglib gui )
|
|
|
|
|
2015-10-19 13:08:30 +05:00
|
|
|
if(NOT WIN32)
|
|
|
|
target_link_libraries( netgen mesh stlvis stl geom2dvis interface geom2d csg stl visual csgvis )
|
2017-05-10 22:34:42 +05:00
|
|
|
target_link_libraries( gui PUBLIC mesh stlvis stl geom2dvis interface geom2d csg stl visual csgvis )
|
2015-10-19 13:08:30 +05:00
|
|
|
endif(NOT WIN32)
|
2015-03-06 18:59:14 +05:00
|
|
|
|
|
|
|
install(TARGETS netgen ${ng_install_dir})
|
2017-05-10 22:34:42 +05:00
|
|
|
install(TARGETS gui ${ng_install_dir})
|
2017-05-08 19:42:49 +05:00
|
|
|
|
2016-02-08 19:53:16 +05:00
|
|
|
if(APPLE)
|
2016-02-23 17:08:09 +05:00
|
|
|
set_target_properties(netgen PROPERTIES OUTPUT_NAME netgen)
|
2016-02-08 19:53:16 +05:00
|
|
|
endif(APPLE)
|
2017-05-10 22:34:42 +05:00
|
|
|
if(WIN32)
|
|
|
|
set_target_properties( gui PROPERTIES OUTPUT_NAME libgui )
|
|
|
|
endif(WIN32)
|
2015-03-06 18:59:14 +05:00
|
|
|
|
|
|
|
endif(USE_GUI)
|
|
|
|
|
|
|
|
if(USE_PYTHON)
|
2015-10-20 14:09:29 +05:00
|
|
|
add_library(ngpy SHARED netgenpy.cpp)
|
|
|
|
target_link_libraries( ngpy nglib )
|
2015-03-06 18:59:14 +05:00
|
|
|
if(APPLE)
|
2015-10-20 14:09:29 +05:00
|
|
|
set_target_properties( ngpy PROPERTIES SUFFIX ".so")
|
2015-03-06 18:59:14 +05:00
|
|
|
elseif(WIN32)
|
2015-10-20 14:09:29 +05:00
|
|
|
set_target_properties( ngpy PROPERTIES SUFFIX ".pyd")
|
2015-10-20 14:15:01 +05:00
|
|
|
set_target_properties( ngpy PROPERTIES OUTPUT_NAME "libngpy")
|
2015-03-06 18:59:14 +05:00
|
|
|
endif()
|
2015-10-20 14:09:29 +05:00
|
|
|
install(TARGETS ngpy ${ng_install_dir})
|
2015-03-06 18:59:14 +05:00
|
|
|
endif(USE_PYTHON)
|
|
|
|
|
2017-01-31 19:35:56 +05:00
|
|
|
if(USE_GUI)
|
|
|
|
install(FILES
|
|
|
|
dialog.tcl menustat.tcl ngicon.tcl ng.tcl
|
|
|
|
ngvisual.tcl sockets.tcl nghelp.tcl ngshell.tcl
|
|
|
|
ngtesting.tcl parameters.tcl variables.tcl csgeom.tcl stlgeom.tcl
|
|
|
|
occgeom.tcl acisgeom.tcl netgen.ocf
|
|
|
|
DESTINATION ${ng_install_dir_bin} COMPONENT netgen)
|
|
|
|
|
|
|
|
add_subdirectory(Togl2.1)
|
|
|
|
install(FILES drawing.tcl DESTINATION ${ng_install_dir_bin} COMPONENT netgen)
|
|
|
|
endif(USE_GUI)
|
2015-03-06 18:59:14 +05:00
|
|
|
|