mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
- STEP low-level parser is converted to C++; required minimal version of flex is elevated to 2.5.37. - Added possibility to import STEP from stream, see new method XSControl_Reader::ReadStream() (now implemented in STEP only). - Parsers ported to win_flex_bison 2.5.23 (flex 2.6.4, bison 3.7.1) - Added support of C++ flex and bison scanners in in CMake scripts - Some code clean-up in StepFile and around (unused files and functions are eliminated) - Option to read from stream is added in DRAW command testreadstep for testing ReadStream() function - Added test bugs step bug27342
28 lines
1.0 KiB
CMake
28 lines
1.0 KiB
CMake
# bison
|
|
|
|
# execute FindBISON script by "find_package (Bison)" is required to define BISON_TARGET macro
|
|
|
|
# delete obsolete 3RDPARTY_BISON_EXECUTABLE cache variable (not used anymore)
|
|
unset (3RDPARTY_BISON_EXECUTABLE CACHE)
|
|
|
|
# delete BISON_EXECUTABLE cache variable if it is empty, otherwise find_package will fail
|
|
# without reasonable diagnostic
|
|
if (NOT BISON_EXECUTABLE OR NOT EXISTS "${BISON_EXECUTABLE}")
|
|
unset (BISON_EXECUTABLE CACHE)
|
|
endif()
|
|
|
|
# Add paths to 3rdparty subfolders containing name "bison" to CMAKE_PROGRAM_PATH variable to make
|
|
# these paths searhed by find_package
|
|
if (3RDPARTY_DIR)
|
|
file (GLOB BISON_PATHS LIST_DIRECTORIES true "${3RDPARTY_DIR}/*bison*/")
|
|
foreach (candidate_path ${BISON_PATHS})
|
|
if (IS_DIRECTORY ${candidate_path})
|
|
list (APPEND CMAKE_PROGRAM_PATH ${candidate_path})
|
|
endif()
|
|
endforeach()
|
|
endif()
|
|
|
|
# bison 3.2 is required because it provides options to avoid generation of redundant header
|
|
# files and embedding of local paths in the generated code
|
|
find_package (BISON 3.2)
|