mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 03:00:14 +08:00
c8783f3e23
Remove unnecessary Non-ASCII characters from source code (#9075) * Remove unnecessary Non-ASCII characters from source code Remove unnecessary Non-ASCII characters and replace them with ASCII characters * Remove dashes in the @param statement Remove dashes and place single space in the @param statement to keep coding style * misc: more fixes for non-ASCII symbols * misc: fix non-ASCII symbol in CMake file
12 lines
360 B
CMake
12 lines
360 B
CMake
if(WIN32)
|
|
find_path( CSTRIPES_LIB_DIR
|
|
NAMES "C=.lib"
|
|
DOC "The path to C= lib and dll")
|
|
if(CSTRIPES_LIB_DIR)
|
|
ocv_include_directories("${CSTRIPES_LIB_DIR}/..")
|
|
link_directories("${CSTRIPES_LIB_DIR}")
|
|
set(OPENCV_LINKER_LIBS ${OPENCV_LINKER_LIBS} "C=")
|
|
set(HAVE_CSTRIPES 1)
|
|
endif()
|
|
endif()
|