more work on the none git source version.

This commit is contained in:
2021-07-12 16:00:19 +02:00
parent 39485d6f72
commit 668b4bf481
4 changed files with 38 additions and 2 deletions

View File

@@ -1,5 +1,12 @@
#--- musrStep for Qt > 5.0 ----------------------------------------------------
#--- check if project source is repo ------------------------------------------
if (IS_GIT_REPO)
set(HAVE_GIT_REV_H "-DHAVE_GIT_REV_H")
else (IS_GIT_REPO)
set(HAVE_GIT_REV_H "")
endif (IS_GIT_REPO)
set(qt_libs Qt5::Core Qt5::Widgets Qt5::Svg)
set(musrStep_src
@@ -47,6 +54,11 @@ target_include_directories(musrStep
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/../../include>
)
target_compile_options(musrWiz
PRIVATE
"${HAVE_GIT_REV_H}"
)
target_link_libraries(musrStep ${qt_libs})
#--- installation info --------------------------------------------------------