Moved debayer and preprocessing parameters to class ProcParams for every single image. Added tab RAW for changing those parameters. Progress bar shows only load step (work to do)
14 lines
524 B
CMake
14 lines
524 B
CMake
include_directories (.)
|
|
add_library (rtexif rtexif.cc stdattribs.cc nikonattribs.cc canonattribs.cc
|
|
pentaxattribs.cc fujiattribs.cc sonyminoltaattribs.cc olympusattribs.cc)
|
|
|
|
IF (WIN32)
|
|
set_target_properties (rtexif PROPERTIES COMPILE_FLAGS " -ffast-math -fexpensive-optimizations")
|
|
ELSE (WIN32)
|
|
set_target_properties (rtexif PROPERTIES COMPILE_FLAGS " -ffast-math -fexpensive-optimizations -fPIC")
|
|
ENDIF (WIN32)
|
|
|
|
IF (BUILD_SHARED_LIBS)
|
|
INSTALL(TARGETS rtexif DESTINATION ${LIBDIR})
|
|
ENDIF (BUILD_SHARED_LIBS)
|