Init commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
file(GLOB SRC_ZCV CONFIGURE_DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/src/*.cpp)
|
||||
file(GLOB INC_ZCV CONFIGURE_DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/include/*.*)
|
||||
|
||||
|
||||
add_library(${TG_ZCV} STATIC
|
||||
${SRC_ZCV}
|
||||
include/zcv.h
|
||||
)
|
||||
|
||||
target_link_libraries(${TG_ZCV} PRIVATE
|
||||
# opencv_world
|
||||
${OpenCV_LIBS}
|
||||
)
|
||||
|
||||
target_include_directories(${TG_ZCV} PUBLIC
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/include
|
||||
${OpenCV_INCLUDE_DIRS}
|
||||
)
|
||||
Reference in New Issue
Block a user