Commit c19a8b66 authored by David Svoboda's avatar David Svoboda Committed by Vladimír Ulman
Browse files

Opravy překlepu (TifF) v CMakelists.txt

M    CMakeLists.txt
parent 350558c2
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ option (SAVE_ANISOTROPIC_GT "Shall I provide also resampled phantom and mask ima
option (SAVE_FINAL "Shall I also generate final images from phantom images?" ON)
option (USE_REAL_PSF "Shall I use real PSF for final images (slower!!!)?" OFF)
option (HIGH_SNR "Shall I generate final images of higher SNR (not applied if real PSF is used)?" ON)
option (SAVE_TIFFS "Shall I save 3D TifF images rather than ICS images?" OFF)
option (SAVE_TIFFS "Shall I save 3D TIFF images rather than ICS images?" OFF)
option (SAVE_FLOWFIELDS "Shall I also output flow field images?" OFF)
option (DO_RIGID_MOTION "Shall I include rigid movement (translation plus rotation) of cells into the simulation?" ON)
option (DO_NONRIGID_MOTION "Shall I include non-rigid movement (smooth shape deformation) of cells into the simulation?" ON)
@@ -90,9 +90,9 @@ endif (USE_REAL_PSF)
if (HIGH_SNR)
    add_definitions(-DGTGEN_WITH_HIGHSNR)
endif (HIGH_SNR)
if (SAVE_TifFS)
    add_definitions(-DGTGEN_WITH_TifFS)
endif (SAVE_TifFS)
if (SAVE_TIFFS)
    add_definitions(-DGTGEN_WITH_TIFFS)
endif (SAVE_TIFFS)
if (SAVE_FLOWFIELDS)
    add_definitions(-DGTGEN_WITH_FLOWFIELDS)
endif (SAVE_FLOWFIELDS)
@@ -239,7 +239,7 @@ if (BUILD_STATIC)
		  find_library(LIB_HDF5_HL hdf5_hl)
		  find_library(LIB_HDF5 hdf5) 
		  
		  set(LIBS ${LIBS} ${LIB_TifF} ${LIB_JPEG} ${LIB_ICS}
		  set(LIBS ${LIBS} ${LIB_TIFF} ${LIB_JPEG} ${LIB_ICS}
		  					 ${LIB_PNG} ${LIB_HDF5} ${LIB_HDF5_HL})

		  find_library(LIB_LZMA lzma)