mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Install occt folder now can contain several occt configurations - custom.bat/sh was added to include specific (for each occt config) custom.bat/sh files - specific custom.bat/sh is added for each configuration (e.g., custom_vc9_win32_d.bat), generated by cmake and included within custom.bat/sh - draw.bat has three argument, e.g., vc9 win32 debug (as occt behavior) - sample.bat has one or four arguments, e.g., sample_name vc8 win64 release - PATH is not changed. DRAWEXE.exe is called from specific folder patched custom.[bat/sh].[main/in] files have higher priority than origin ones Documentation was updated to describe new features of CMake Seeking process of OpenCL include folder was fixed
51 lines
2.3 KiB
CMake
51 lines
2.3 KiB
CMake
cmake_minimum_required (VERSION 2.6)
|
|
|
|
project (Modeling)
|
|
|
|
add_definitions(-DWINVER=0x0500)
|
|
|
|
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)
|
|
|
|
install (TARGETS Modeling RUNTIME DESTINATION "${INSTALL_DIR}/win${COMPILER_BITNESS}/${COMPILER}/bin${BUILD_SUFFIX}"
|
|
ARCHIVE DESTINATION "${INSTALL_DIR}/win${COMPILER_BITNESS}/${COMPILER}/lib${BUILD_SUFFIX}"
|
|
LIBRARY DESTINATION "${INSTALL_DIR}/win${COMPILER_BITNESS}/${COMPILER}/lib${BUILD_SUFFIX}")
|
|
|
|
include_directories (${OCCT_ROOT}/inc
|
|
${MFC_STANDARD_SAMPLES_DIR}/02_Modeling
|
|
${Modeling_SRC_DIR}
|
|
${MFC_STANDARD_SAMPLES_DIR}/Common)
|
|
|
|
target_link_libraries (Modeling mfcsample TKSTEP209 TKSTEPAttr TKSTEPBase TKBO)
|