comparison Resources/CMake/OrthancStoneConfiguration.cmake @ 414:f7616c010056

reorganization
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 12 Nov 2018 18:00:48 +0100
parents 18b707fb8620
children c0589c3173fd
comparison
equal deleted inserted replaced
413:18b707fb8620 414:f7616c010056
244 ${ORTHANC_STONE_ROOT}/Framework/Layers/IVolumeSlicer.h 244 ${ORTHANC_STONE_ROOT}/Framework/Layers/IVolumeSlicer.h
245 ${ORTHANC_STONE_ROOT}/Framework/Layers/LineLayerRenderer.cpp 245 ${ORTHANC_STONE_ROOT}/Framework/Layers/LineLayerRenderer.cpp
246 ${ORTHANC_STONE_ROOT}/Framework/Layers/LineMeasureTracker.cpp 246 ${ORTHANC_STONE_ROOT}/Framework/Layers/LineMeasureTracker.cpp
247 ${ORTHANC_STONE_ROOT}/Framework/Layers/RenderStyle.cpp 247 ${ORTHANC_STONE_ROOT}/Framework/Layers/RenderStyle.cpp
248 ${ORTHANC_STONE_ROOT}/Framework/Layers/SliceOutlineRenderer.cpp 248 ${ORTHANC_STONE_ROOT}/Framework/Layers/SliceOutlineRenderer.cpp
249 ${ORTHANC_STONE_ROOT}/Framework/Radiography/RadiographyLayerMoveTracker.cpp
250 ${ORTHANC_STONE_ROOT}/Framework/Radiography/RadiographyLayerRotateTracker.cpp
249 ${ORTHANC_STONE_ROOT}/Framework/Radiography/RadiographyLayer.cpp 251 ${ORTHANC_STONE_ROOT}/Framework/Radiography/RadiographyLayer.cpp
250 ${ORTHANC_STONE_ROOT}/Framework/Radiography/RadiographyScene.cpp 252 ${ORTHANC_STONE_ROOT}/Framework/Radiography/RadiographyScene.cpp
251 ${ORTHANC_STONE_ROOT}/Framework/Radiography/RadiographySceneCommand.cpp 253 ${ORTHANC_STONE_ROOT}/Framework/Radiography/RadiographySceneCommand.cpp
252 ${ORTHANC_STONE_ROOT}/Framework/Radiography/RadiographyWidget.cpp 254 ${ORTHANC_STONE_ROOT}/Framework/Radiography/RadiographyWidget.cpp
253 ${ORTHANC_STONE_ROOT}/Framework/SmartLoader.cpp 255 ${ORTHANC_STONE_ROOT}/Framework/SmartLoader.cpp
348 _extension STREQUAL ".h") AND 350 _extension STREQUAL ".h") AND
349 EXISTS ${_header} AND 351 EXISTS ${_header} AND
350 NOT IS_DIRECTORY ${_header} AND 352 NOT IS_DIRECTORY ${_header} AND
351 NOT IS_SYMLINK ${_header}) 353 NOT IS_SYMLINK ${_header})
352 354
355 # Prevent adding the header twice if it is already manually
356 # specified in the sources
353 list (FIND SOURCES_VAR ${_header} _index) 357 list (FIND SOURCES_VAR ${_header} _index)
354 if (${_index} EQUAL -1) 358 if (${_index} EQUAL -1)
355 list(APPEND TMP ${_header}) 359 list(APPEND TMP ${_header})
356 endif() 360 endif()
357 endif() 361 endif()