]> Creatis software - gdcm.git/blob - CMake/FindDicom3Tools.cmake
* No comments...
[gdcm.git] / CMake / FindDicom3Tools.cmake
1
2 # this module looks for Dicom3Tools, well right now only dciodvfy
3 #
4 # DCIODVFY_EXECUTABLE - the full path to the dciodvfy
5 # DCIODVFY_FOUND      - If false, don't attempt to use dciodvfy
6
7 FIND_PROGRAM(DCIODVFY_EXECUTABLE
8   dciodvfy
9   "/tmp/"
10   "/tmp/dicom3tools_1.00.snapshot.20041227.graymax/appsrc/dcfile/"
11   "${DICOM3TOOLS}/bin"
12   )
13
14 MARK_AS_ADVANCED(
15   DCIODVFY_EXECUTABLE
16   )
17
18 IF (NOT DCIODVFY_EXECUTABLE)
19   SET(DCIODVFY_FOUND "NO")
20 ELSE (NOT DCIODVFY_EXECUTABLE)
21   SET(DCIODVFY_FOUND "YES")
22 ENDIF (NOT DCIODVFY_EXECUTABLE)
23