mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-24 04:53:05 +08:00
Remove trailing whitespace
This commit is contained in:
@@ -1,26 +1,26 @@
|
||||
project(src)
|
||||
|
||||
|
||||
cmake_minimum_required (VERSION 2.6)
|
||||
cmake_minimum_required (VERSION 2.6)
|
||||
|
||||
SET(OpenCV_DIR "${CMAKE_SOURCE_DIR}/../libraries/opencv/")
|
||||
SET(Tesseract_DIR "${CMAKE_SOURCE_DIR}/../libraries/tesseract-ocr")
|
||||
|
||||
|
||||
include_directories(
|
||||
${Tesseract_DIR}/api
|
||||
${Tesseract_DIR}/ccutil/
|
||||
${Tesseract_DIR}/ccstruct/
|
||||
${Tesseract_DIR}/ccmain/
|
||||
)
|
||||
|
||||
|
||||
IF (WIN32)
|
||||
add_definitions( -DWINDOWS)
|
||||
add_definitions( -DNOMINMAX)
|
||||
|
||||
link_directories( ${Tesseract_DIR}/vs2008/LIB_Release/ )
|
||||
|
||||
link_directories( ${Tesseract_DIR}/vs2008/LIB_Release/ )
|
||||
ELSE()
|
||||
|
||||
link_directories( ${Tesseract_DIR}/api/.libs/ )
|
||||
link_directories( ${Tesseract_DIR}/api/.libs/ )
|
||||
ENDIF()
|
||||
|
||||
|
||||
@@ -40,10 +40,10 @@ ADD_EXECUTABLE( alpr main.cpp )
|
||||
|
||||
IF (WIN32)
|
||||
# Extra linker dependencies for Windows
|
||||
TARGET_LINK_LIBRARIES(alpr
|
||||
TARGET_LINK_LIBRARIES(alpr
|
||||
openalpr
|
||||
support
|
||||
${OpenCV_LIBS}
|
||||
${OpenCV_LIBS}
|
||||
libtesseract302-static
|
||||
liblept168
|
||||
liblept168-static-mtdll
|
||||
@@ -54,17 +54,16 @@ IF (WIN32)
|
||||
zlib125-static-mtdll
|
||||
ws2_32.lib
|
||||
)
|
||||
|
||||
|
||||
ELSE()
|
||||
|
||||
TARGET_LINK_LIBRARIES(alpr
|
||||
TARGET_LINK_LIBRARIES(alpr
|
||||
openalpr
|
||||
support
|
||||
${OpenCV_LIBS}
|
||||
${OpenCV_LIBS}
|
||||
tesseract
|
||||
)
|
||||
ENDIF()
|
||||
|
||||
|
||||
add_subdirectory(openalpr)
|
||||
add_subdirectory(misc_utilities)
|
||||
|
||||
|
Reference in New Issue
Block a user