mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
CMake scripts are corrected to do perform search of libs and dlls of third-party libraries even for static builds of OCCT. Treatment of errors in this case is relaxed: not found DLLs are reported as warnings, and not found libs as warning for static build, and continuable error for shared build. Code of samples is corrected to allow building with OCCT linked statically. Implementation of main application class is corrected to ensure that initialization is done after all global objects are created. Note however that samples still fails to start for unclear reason (creation of MFC frame window fails).
71 lines
2.8 KiB
CMake
71 lines
2.8 KiB
CMake
cmake_minimum_required (VERSION 2.6)
|
|
|
|
project (Ocaf)
|
|
|
|
add_definitions (-DWINVER=0x0501 -DUNICODE -D_UNICODE)
|
|
set (CMAKE_MFC_FLAG 2)
|
|
|
|
set (Ocaf_SRC_DIR ${MFC_STANDARD_SAMPLES_DIR}/06_Ocaf/src)
|
|
set (Ocaf_HEADER_FILES ${Ocaf_SRC_DIR}/NewBoxDlg.h
|
|
${Ocaf_SRC_DIR}/NewCylDlg.h
|
|
${Ocaf_SRC_DIR}/OcafApp.h
|
|
${Ocaf_SRC_DIR}/OcafDoc.h
|
|
${Ocaf_SRC_DIR}/OcafMainFrm.h
|
|
${Ocaf_SRC_DIR}/TOcaf_Commands.hxx
|
|
${Ocaf_SRC_DIR}/StdAfx.h )
|
|
set (Ocaf_SOURCE_FILES ${Ocaf_SRC_DIR}/NewBoxDlg.cpp
|
|
${Ocaf_SRC_DIR}/NewCylDlg.cpp
|
|
${Ocaf_SRC_DIR}/OcafApp.cpp
|
|
${Ocaf_SRC_DIR}/OcafDoc.cpp
|
|
${Ocaf_SRC_DIR}/OcafMainFrm.cpp
|
|
${Ocaf_SRC_DIR}/TOcaf_Application.cxx
|
|
${Ocaf_SRC_DIR}/TOcaf_Commands.cxx
|
|
${Ocaf_SRC_DIR}/TOcafFunction_BoxDriver.cxx
|
|
${Ocaf_SRC_DIR}/TOcafFunction_CutDriver.cxx
|
|
${Ocaf_SRC_DIR}/TOcafFunction_CylDriver.cxx
|
|
${Ocaf_SRC_DIR}/StdAfx.cpp )
|
|
|
|
set (Ocaf_RESOURCE_DIR ${MFC_STANDARD_SAMPLES_DIR}/06_Ocaf/res)
|
|
set (Ocaf_RESOURCE_HEADER ${Ocaf_RESOURCE_DIR}/resource.h)
|
|
set (Ocaf_RESOURCE_FILES ${Ocaf_RESOURCE_DIR}/ActionsTB.bmp
|
|
${Ocaf_RESOURCE_DIR}/AIS_TB.bmp
|
|
${Ocaf_RESOURCE_DIR}/Toolbar.bmp
|
|
${Ocaf_RESOURCE_DIR}/UndoRedoTB.bmp
|
|
${Ocaf_RESOURCE_DIR}/Ocaf.rc)
|
|
|
|
# groups in the VS solution
|
|
source_group ("Source Files" FILES ${Ocaf_SOURCE_FILES}
|
|
${COMMON_WINMAIN_FILE})
|
|
|
|
source_group ("Header Files" FILES ${Ocaf_HEADER_FILES}
|
|
${Ocaf_RESOURCE_HEADER})
|
|
|
|
source_group ("Resource Files" FILES ${Ocaf_RESOURCE_FILES})
|
|
|
|
add_executable (Ocaf WIN32 ${Ocaf_SOURCE_FILES}
|
|
${Ocaf_HEADER_FILES}
|
|
${COMMON_WINMAIN_FILE}
|
|
${Ocaf_RESOURCE_HEADER}
|
|
${Ocaf_RESOURCE_FILES} )
|
|
|
|
|
|
set_property (TARGET Ocaf PROPERTY FOLDER Samples)
|
|
|
|
if (SINGLE_GENERATOR)
|
|
install (TARGETS Ocaf DESTINATION "${INSTALL_DIR_BIN}")
|
|
else()
|
|
install (TARGETS Ocaf
|
|
CONFIGURATIONS Release RelWithDebInfo
|
|
DESTINATION "${INSTALL_DIR_BIN}")
|
|
install (TARGETS Ocaf
|
|
CONFIGURATIONS Debug
|
|
DESTINATION "${INSTALL_DIR_BIN}d")
|
|
endif()
|
|
|
|
include_directories (${CMAKE_BINARY_DIR}/inc
|
|
${MFC_STANDARD_SAMPLES_DIR}/06_Ocaf
|
|
${Ocaf_SRC_DIR}
|
|
${MFC_STANDARD_SAMPLES_DIR}/Common)
|
|
|
|
target_link_libraries (Ocaf mfcsample TKLCAF TKVCAF TKBO TKBin TKXml TKBinL TKXmlL)
|