create project

create project
This commit is contained in:
2019-12-25 09:36:38 +08:00
parent 27ba675818
commit 9951985c6b
22 changed files with 498941 additions and 33 deletions

11
CMakeLists.txt Executable file
View File

@@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 2.8)
project(main)
set(QMAKE_CXXFLAGS "-std=c++11")
find_package(OpenCV REQUIRED)
#set(CMAKE_BUILD_TYPE Debug)
AUX_SOURCE_DIRECTORY(./src DIR_SRCS)
add_executable(main ${DIR_SRCS})
target_link_libraries(main ${OpenCV_LIBS})