mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Integration of ExpToCas tool ported to modern state of OCCT: - new package Express and toolkit TKExpress for EXPRESS data structures and OCCT class generator - executable ExpToCasExe including lax/yacc parsers, for parsing a Part 21 file and generating classes Formatting added files from package Express following OCCT Coding Rules Changes for correspondence generated files to OCCT Code Rules. Add generation hxx files with declaration of arrays. If field is a HArray1 method for get length of array and method for get element of array by its index are generated. Changes for generation parser from Lex and YACC files. Update description file ReadMe.md
34 lines
1.2 KiB
CMake
34 lines
1.2 KiB
CMake
# flex
|
|
|
|
# execute FindFLEX script by "find_package (Flex)" is required to define FLEX_TARGET macro
|
|
|
|
# delete obsolete 3RDPARTY_FLEX_EXECUTABLE cache variable (not used anymore)
|
|
unset (3RDPARTY_FLEX_EXECUTABLE CACHE)
|
|
|
|
# delete FLEX_EXECUTABLE cache variable if it is empty, otherwise find_package will fail
|
|
# without reasonable diagnostic
|
|
if (NOT FLEX_EXECUTABLE OR NOT EXISTS "${FLEX_EXECUTABLE}")
|
|
unset (FLEX_EXECUTABLE CACHE)
|
|
endif()
|
|
if (NOT FLEX_INCLUDE_DIR OR NOT EXISTS "${FLEX_INCLUDE_DIR}")
|
|
unset (FLEX_INCLUDE_DIR CACHE)
|
|
endif()
|
|
|
|
# Add paths to 3rdparty subfolders containing name "flex" to CMAKE_PROGRAM_PATH and
|
|
# CMAKE_INCLUDE_PATH variables to make these paths searhed by find_package
|
|
if (3RDPARTY_DIR)
|
|
file (GLOB FLEX_PATHS LIST_DIRECTORIES true "${3RDPARTY_DIR}/*flex*")
|
|
foreach (candidate_path ${FLEX_PATHS})
|
|
if (IS_DIRECTORY ${candidate_path})
|
|
list (APPEND CMAKE_PROGRAM_PATH ${candidate_path})
|
|
list (APPEND CMAKE_INCLUDE_PATH ${candidate_path})
|
|
endif()
|
|
endforeach()
|
|
endif()
|
|
|
|
find_package (FLEX 2.6.4)
|
|
|
|
if (NOT FLEX_FOUND OR NOT FLEX_INCLUDE_DIR OR NOT EXISTS "${FLEX_INCLUDE_DIR}/FlexLexer.h")
|
|
list (APPEND 3RDPARTY_NOT_INCLUDED FLEX_INCLUDE_DIR)
|
|
endif()
|