mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Generation of header files from resource files was added to CMake and genproj procedures. Message_MsgFile has been extended with new method ::LoadFromString() for loading messages from embedded resources. Message_MsgFile::LoadFromString() is now a preferred way for loading message resources by application as alternative to environment variables. TObje/TObj.msg is now embedded into TObj_Application.cxx. TObj_Application now loads its global messages on instantiation of the first class instance. UnitsAPI/Lexi_Expr.dat now completely embedded into Units_Lexicon.cxx. UnitsAPI/Units.dat now embedded into Units_UnitsDictionary.cxx but can be regenerated from resource file. The definition of the following units have been removed: benne à charbon, calorie (diététique). Unused message files XSMessage/IGES.us and IGES.fr have been removed. Related code IGESData.cxx has been removed as well. XSMessage/XSTEP.us is now embedded into Interface_StaticStandards.cxx and used for fallback initialization in case when file resources defined by CSF_XSMessage environment variable are missing. SHMessage/SHAPE.us is now embedded into ShapeExtend.cxx and used for fallback initialization in case when file resources defined by CSF_XHMessage environment variable are missing. Duplicating code has been removed from ShapeProcess_OperLibrary.cxx. Shaders/Declarations.glsl and Shaders/DeclarationsImpl.glsl are now embedded into OpenGl_ShaderProgram.cxx. CSF_ShadersDirectory is no more required for using OCCT 3D Viewer. Ray-Tracing GLSL programs from Shaders are now embedded into OpenGl_View_Raytrace.cxx. File resources are still used instead of embedded programs when CSF_ShadersDirectory is defined, but this functionality is intended for OCCT development. Enumeration Graphic3d_ShaderProgram::ShaderName_Phong demonstrating custom GLSL program usage has been removed.
79 lines
3.4 KiB
CMake
79 lines
3.4 KiB
CMake
# OCCT resource files generation
|
|
|
|
macro (OCCT_GENERATE_CONTENT_ONLY CurrentResource)
|
|
set (RESOURCE_FILES)
|
|
set (isResDirectory FALSE)
|
|
if (IS_DIRECTORY "${CMAKE_SOURCE_DIR}/src/${CurrentResource}")
|
|
file (STRINGS "${CMAKE_SOURCE_DIR}/src/${CurrentResource}/FILES" RESOURCE_FILES)
|
|
set (CurrentResource_Directory "${CurrentResource}")
|
|
set (isResDirectory TRUE)
|
|
else()
|
|
get_filename_component (CurrentResource_Name "${CurrentResource}" NAME)
|
|
list (APPEND RESOURCE_FILES "res:::${CurrentResource_Name}")
|
|
get_filename_component (CurrentResource_Directory "${CurrentResource}" DIRECTORY)
|
|
endif()
|
|
|
|
# Add current toolkit into RESOURCE_TOOLKITS array to copy it to the BUILD directory
|
|
list (APPEND RESOURCE_TOOLKITS "${CurrentResource_Directory}")
|
|
list (REMOVE_DUPLICATES RESOURCE_TOOLKITS)
|
|
|
|
if (BUILD_RESOURCES)
|
|
foreach (RESOURCE_FILE ${RESOURCE_FILES})
|
|
string (REGEX MATCH "^[^:]+:::" IS_RESOURCE "${RESOURCE_FILE}")
|
|
if (IS_RESOURCE)
|
|
string (REGEX REPLACE "[^:]+:+" "" RESOURCE_FILE "${RESOURCE_FILE}")
|
|
|
|
get_filename_component (CurrentResource_FileName "${RESOURCE_FILE}" NAME)
|
|
string (REPLACE "." "_" CurrentResource_FileName "${CurrentResource_FileName}")
|
|
set (HEADER_FILE_NAME "${CurrentResource_Directory}_${CurrentResource_FileName}.pxx")
|
|
|
|
set (toProcessResFile TRUE)
|
|
if (isResDirectory)
|
|
list (FIND RESOURCE_FILES "${HEADER_FILE_NAME}" aResIndex)
|
|
if ("${aResIndex}" STREQUAL "-1")
|
|
set (toProcessResFile FALSE)
|
|
endif()
|
|
endif()
|
|
|
|
if (toProcessResFile)
|
|
message(STATUS "Info. Generating header file from resource file: ${CMAKE_SOURCE_DIR}/src/${CurrentResource_Directory}/${RESOURCE_FILE}")
|
|
|
|
# generate content for header file
|
|
set (OCCT_HEADER_FILE_CONTENT)
|
|
string (APPEND OCCT_HEADER_FILE_CONTENT "// This file has been automatically generated from resource file src/${CurrentResource_Directory}/${RESOURCE_FILE}\n\n")
|
|
|
|
# read resource file
|
|
file (STRINGS "${CMAKE_SOURCE_DIR}/src/${CurrentResource_Directory}/${RESOURCE_FILE}" RESOURCE_FILE_LINES_LIST)
|
|
|
|
string (APPEND OCCT_HEADER_FILE_CONTENT "static const char ${CurrentResource_Directory}_${CurrentResource_FileName}[] =")
|
|
foreach (line IN LISTS RESOURCE_FILE_LINES_LIST)
|
|
string (REPLACE "\"" "\\\"" line "${line}")
|
|
string (APPEND OCCT_HEADER_FILE_CONTENT "\n \"${line}\\n\"")
|
|
endforeach()
|
|
string (APPEND OCCT_HEADER_FILE_CONTENT ";")
|
|
|
|
# Save generated content to header file
|
|
set (HEADER_FILE "${CMAKE_SOURCE_DIR}/src/${CurrentResource_Directory}/${HEADER_FILE_NAME}")
|
|
if (EXISTS "${HEADER_FILE}")
|
|
file (REMOVE "${HEADER_FILE}")
|
|
endif()
|
|
configure_file ("${CMAKE_SOURCE_DIR}/adm/templates/header.in" "${HEADER_FILE}" @ONLY NEWLINE_STYLE LF)
|
|
endif()
|
|
endif()
|
|
endforeach()
|
|
endif()
|
|
endmacro()
|
|
|
|
|
|
FILE_TO_LIST ("adm/RESOURCES" RESOURCES)
|
|
foreach (CurrentResource ${RESOURCES})
|
|
get_filename_component (CurrentResource_FileName "${CurrentResource}" NAME)
|
|
if ("${CurrentResource_FileName}" STREQUAL TObj.msg OR
|
|
"${CurrentResource_FileName}" STREQUAL Units.dat OR
|
|
"${CurrentResource}" STREQUAL XSMessage OR
|
|
"${CurrentResource}" STREQUAL SHMessage OR
|
|
"${CurrentResource}" STREQUAL Shaders)
|
|
OCCT_GENERATE_CONTENT_ONLY ("${CurrentResource}")
|
|
endif()
|
|
endforeach()
|