initial commit
This commit is contained in:
commit
6c394cb395
3 changed files with 39 additions and 0 deletions
18
CMakeLists.txt
Normal file
18
CMakeLists.txt
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
cmake_minimum_required(VERSION 2.8)
|
||||
|
||||
|
||||
set(PROJECT_NAME box3d)
|
||||
|
||||
project(${PROJECT_NAME})
|
||||
|
||||
find_package(OpenCV REQUIRED)
|
||||
|
||||
|
||||
set(HEADERS
|
||||
)
|
||||
set(SOURCES
|
||||
main.cpp)
|
||||
|
||||
add_executable(${PROJECT_NAME} ${SOURCES} ${HEADERS})
|
||||
target_include_directories(${PROJECT_NAME} PUBLIC ${OpenCV_INCLUDE_DIRS})
|
||||
target_link_libraries(${PROJECT_NAME} ${OpenCV_LIBS})
|
||||
Loading…
Add table
Add a link
Reference in a new issue