# # this module looks for Dicom3Tools, well right now only dciodvfy, dcuncat, # dcmulti # # DCIODVFY_EXECUTABLE - the full path to the dciodvfy # DCIODVFY_FOUND - If false, don't attempt to use dciodvfy # dicom3tools are funny to build you'll need imake # Anyway in order not to pollute your system, you can do an in-source build and # install which should be clean enough: # # ./Configure # imake -I./config -DInstallInTopDir # make World # make install (will copy in ./bin) # # then all you need to do is export an env var DICOM3TOOLS pointing to that dir # # Copyright (c) 2006-2011 Mathieu Malaterre # # Redistribution and use is allowed according to the terms of the New # BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. # find_program(DCIODVFY_EXECUTABLE dciodvfy "/tmp/" "$ENV{DICOM3TOOLS}/bin" "$ENV{DICOM3TOOLS}/bin/1.2.6.8." ) find_program(DCDUMP_EXECUTABLE dcdump "/tmp/" "$ENV{DICOM3TOOLS}/bin" "$ENV{DICOM3TOOLS}/bin/1.2.6.8." ) find_program(DCUNCAT_EXECUTABLE dcuncat "$ENV{DICOM3TOOLS}/bin" ) find_program(DCMULTI_EXECUTABLE dcmulti "$ENV{DICOM3TOOLS}/bin" ) mark_as_advanced( DCIODVFY_EXECUTABLE DCDUMP_EXECUTABLE DCUNCAT_EXECUTABLE DCMULTI_EXECUTABLE ) #if (NOT DCIODVFY_EXECUTABLE) # set(DCIODVFY_FOUND "NO") #else () # set(DCIODVFY_FOUND "YES") #endif ()