0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-08-26 11:43:44 +03:00
This commit is contained in:
Tiziano Bacocco 2025-08-23 20:58:23 +00:00 committed by GitHub
commit e29996aa50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -397,7 +397,7 @@ set(GLOBAL_HEADERS
${PROJECT_NAME}/LRCallbackDS
${PROJECT_NAME}/LRDataManager
${PROJECT_NAME}/LRScriptManager
${CMAKE_BINARY_DIR}/limereport/version.h
${CMAKE_CURRENT_BINARY_DIR}/limereport/version.h
)
set(PROJECT_NAME ${PROJECT_NAME}-qt${QT_VERSION_MAJOR})
@ -470,7 +470,7 @@ target_include_directories( ${PROJECT_NAME} PRIVATE
limereport/scripteditor )
target_include_directories( ${PROJECT_NAME} PUBLIC
${CMAKE_BINARY_DIR}/limereport )
${CMAKE_CURRENT_BINARY_DIR}/limereport )
target_include_directories( ${PROJECT_NAME} INTERFACE
${CMAKE_CURRENT_SOURCE_DIR}/include)

View File

@ -22,7 +22,7 @@ if(NOT DEFINED GIT_VERSION)
endif()
configure_file(
${CMAKE_SOURCE_DIR}/limereport/version.h.in
${CMAKE_BINARY_DIR}/limereport/version.h
${CMAKE_CURRENT_SOURCE_DIR}/limereport/version.h.in
${CMAKE_CURRENT_BINARY_DIR}/limereport/version.h
@ONLY)