You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
414 B
CMake
13 lines
414 B
CMake
include_directories("${OpenCV_INCLUDE_DIRS}")
|
|
set(DEHAZE01_INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}")
|
|
set(DEHAZE01_INCLUDE_DIR ${DEHAZE01_INCLUDE_DIR} PARENT_SCOPE)
|
|
add_library( # Sets the name of the library.
|
|
LIB_DEHAZE01
|
|
SHARED
|
|
dehazing.cpp
|
|
Transmission.cpp
|
|
guidedfilter.cpp
|
|
functions.cpp
|
|
)
|
|
install (TARGETS LIB_DEHAZE01 DESTINATION lib)
|
|
install (FILES dehazing.h DESTINATION include) |