mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Integrated DE plugin functionality. Reworked DE components: - TKDESTEP: Handling STEP file format. - TKDEOBJ: Handling OBJ file format. - TKDEIGES: Handling IGES file format. - TKDEGLTF: Handling GLTF file format. - TKDEVRML: Handling VRML file format. - TKDEPLY: Handling PLY file format. - TKDESTL: Handling STL file format. Reworked DE DRAW components: TKXSDRAWSTEP: Container for DE command to work with STEP. TKXSDRAWOBJ: Container for DE command to work with OBJ. TKXSDRAWIGES: Container for DE command to work with IGES. TKXSDRAWGLTF: Container for DE command to work with GLTF. TKXSDRAWVRML: Container for DE command to work with VRML. TKXSDRAWPLY: Container for DE command to work with PLY. TKXSDRAWSTL: Container for DE command to work with STL. TKXSDRAW rework to be base DRAW plugin to keep DE session and utils. Updated documentation Updated samples
65 lines
2.6 KiB
CMake
65 lines
2.6 KiB
CMake
# Caution! Be careful, when increase minimal cmake version:
|
|
# using of newer version may leads (by default) to applying
|
|
# of some new policies. It may break compilation.
|
|
# For canceling of applying new policies use:
|
|
# cmake_policy(PUSH) before `cmake_minimum_required`
|
|
# and cmake_policy(POP) after.
|
|
cmake_minimum_required (VERSION 3.1 FATAL_ERROR)
|
|
|
|
project (Modeling)
|
|
|
|
add_definitions(-DWINVER=0x0501 -DUNICODE -D_UNICODE)
|
|
set (CMAKE_MFC_FLAG 2)
|
|
|
|
set (Modeling_SRC_DIR ${MFC_STANDARD_SAMPLES_DIR}/02_Modeling/src)
|
|
set (Modeling_HEADER_FILES ${Modeling_SRC_DIR}/ISession_Direction.h
|
|
${Modeling_SRC_DIR}/ModelingApp.h
|
|
${Modeling_SRC_DIR}/ModelingDoc.h
|
|
${Modeling_SRC_DIR}/StdAfx.h
|
|
${Modeling_SRC_DIR}/State.h )
|
|
set (Modeling_SOURCE_FILES ${Modeling_SRC_DIR}/ISession_Direction.cpp
|
|
${Modeling_SRC_DIR}/ModelingApp.cpp
|
|
${Modeling_SRC_DIR}/ModelingDoc.cpp
|
|
${Modeling_SRC_DIR}/StdAfx.cpp )
|
|
|
|
set (Modeling_RESOURCE_DIR ${MFC_STANDARD_SAMPLES_DIR}/02_Modeling/res)
|
|
set (Modeling_RESOURCE_HEADER ${Modeling_RESOURCE_DIR}/resource.h)
|
|
set (Modeling_RESOURCE_FILES ${Modeling_RESOURCE_DIR}/fram2.bmp
|
|
${Modeling_RESOURCE_DIR}/Toolbar.bmp
|
|
${Modeling_RESOURCE_DIR}/Modeling.rc)
|
|
|
|
# groups in the VS solution
|
|
source_group ("Source Files" FILES ${Modeling_SOURCE_FILES}
|
|
${COMMON_WINMAIN_FILE})
|
|
|
|
source_group ("Header Files" FILES ${Modeling_HEADER_FILES}
|
|
${Modeling_RESOURCE_HEADER})
|
|
|
|
source_group ("Resource Files" FILES ${Modeling_RESOURCE_FILES})
|
|
|
|
add_executable ( Modeling WIN32 ${Modeling_SOURCE_FILES}
|
|
${Modeling_HEADER_FILES}
|
|
${COMMON_WINMAIN_FILE}
|
|
${Modeling_RESOURCE_HEADER}
|
|
${Modeling_RESOURCE_FILES})
|
|
|
|
set_property (TARGET Modeling PROPERTY FOLDER "Samples/mfc")
|
|
|
|
if (SINGLE_GENERATOR)
|
|
install (TARGETS Modeling DESTINATION "${INSTALL_DIR_BIN}")
|
|
else()
|
|
install (TARGETS Modeling
|
|
CONFIGURATIONS Release RelWithDebInfo
|
|
DESTINATION "${INSTALL_DIR_BIN}")
|
|
install (TARGETS Modeling
|
|
CONFIGURATIONS Debug
|
|
DESTINATION "${INSTALL_DIR_BIN}d")
|
|
endif()
|
|
|
|
include_directories (${CMAKE_BINARY_DIR}/inc
|
|
${MFC_STANDARD_SAMPLES_DIR}/02_Modeling
|
|
${Modeling_SRC_DIR}
|
|
${MFC_STANDARD_SAMPLES_DIR}/Common)
|
|
|
|
target_link_libraries (Modeling mfcsample TKDESTEP TKBO)
|