Skip to content

Instantly share code, notes, and snippets.

@goto1134
Created March 14, 2020 11:25
Show Gist options
  • Save goto1134/262d0a1eb379cd5846d22198e30a097b to your computer and use it in GitHub Desktop.
Save goto1134/262d0a1eb379cd5846d22198e30a097b to your computer and use it in GitHub Desktop.
cmake_minimum_required(VERSION 3.15)
project(sudoku_parser)
set(CMAKE_CXX_STANDARD 14)
find_package(OpenCV REQUIRED)
add_executable(sudoku_parser cli/sudoku_parser_cli.cpp detect_digits.cpp
detect_digits.hpp identify_digits.cpp identify_digits.hpp
sudoku_parser.cpp sudoku_parser.h sudoku_parser.hpp sudoku_parser_c.cpp)
#
#add_executable(sudoku_parser main.cpp)
target_link_libraries(sudoku_parser ${OpenCV_LIBS})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment