OCCT 7.9 release and CMake error with MFC Samples

Hello everyone,

I'm new to OCCT and I'm currently taking a look at the different samples. I've downloaded the latest 7.9 sources (which I can build without any problem).

Since I want to evaluate the integration into an MFC application, I wanted to configure the source build using cmake gui and ticked the "BUILD_SAMPLES_MFC" checkbox.

When clicking on "Configure" I get this output:

Selecting Windows SDK version 10.0.22621.0 to target Windows 10.0.26100.
Info: TCL is used by OCCT
Info: TK is used by OCCT
Info: FreeType is used by OCCT
Info: TKIVtk and TKIVtkDraw toolkits excluded due to VTK usage is disabled
Info: /D_WINDOWS has been removed from CMAKE_CXX_FLAGS
Info: /DWIN32 has been removed from CMAKE_CXX_FLAGS
Info: /D_WINDOWS has been removed from CMAKE_C_FLAGS
Info: /DWIN32 has been removed from CMAKE_C_FLAGS
Info: TK is used from TCL folder: D:/Projects/Nenoso/OCCT-7_9_0/3rdParty/tcltk-86-32
Info: The directories of 3rdparty headers:
D:/Projects/Nenoso/OCCT-7_9_0/3rdParty/tcltk-86-32/include
D:/Projects/Nenoso/OCCT-7_9_0/3rdParty/freetype-2.5.5-vc14-32/include
Info: The directories of 3rdparty libraries:
D:/Projects/Nenoso/OCCT-7_9_0/3rdParty/tcltk-86-32/lib
D:/Projects/Nenoso/OCCT-7_9_0/3rdParty/freetype-2.5.5-vc14-32/lib

Info: (10:41:58) Start collecting all OCCT header files into D:/Projects/Nenoso/OCCT-7_9_0/occt-build-vc14-x32/inc ...
Info: (10:41:58) End the collecting
Info: Used native memory manager
Info: (10:41:58) OCCT toolkits processed
CMake Error at samples/mfc/standard/mfcsample/CMakeLists.txt:7 (cmake_minimum_required):
Compatibility with CMake < 3.5 has been removed from CMake.

Update the VERSION argument <min> value. Or, use the <min>...<max> syntax
to tell CMake that the project requires at least <min> but has been updated
to work with policies introduced by <max> or earlier.

Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway.

Configuring incomplete, errors occurred!

As you can see, the configuration fails with a requirement to cmake to be of minimum 3.5.

The cmake version I have is:

>cmake --version
cmake version 4.0.0-rc1

CMake suite maintained and supported by Kitware (kitware.com/cmake).

I don't see how I can add the "-DCMAKE_POLICY_VERSION_MINIMUM=3.5" in the cmke gui.

Any hints how to solve this?

Thanks,
Stefan

Dmitrii Pasukhin's picture

Hello. Thank you for the report. Please remove "samples/mfc/standard/mfcsample/CMakeLists.txt:7" line. Or update to higher version 3.10, for example.

Testing with CMake are missed, I will add that approach. For now we are building using: OCCT/.github/actions/build-sample-mfc/action.yml at master

Best regards, Dmitrii.

Stefan Maton's picture

Thanks for your help.

I had to remove the same line in 01_Geometry/CMakeLists.txt, 02_Modeling/CMakeLists.txt, 03_ImportExport/CMakeLists.txt and 04_HLR/CMakeLists.txt.