mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.1 KiB
69 lines
2.1 KiB
# ---------------------------------------------------------------------------- |
|
# CMake file for cxts. See root CMakeLists.txt |
|
# |
|
# ---------------------------------------------------------------------------- |
|
project(opencv_ts) |
|
|
|
file(GLOB lib_srcs "*.cpp") |
|
source_group("Src" FILES ${lib_srcs}) |
|
file(GLOB lib_hdrs "*.h*") |
|
source_group("Include" FILES ${lib_hdrs}) |
|
|
|
include_directories(. |
|
"${CMAKE_SOURCE_DIR}/modules/core/include") |
|
|
|
if(WIN32 AND MSVC) |
|
set(pch_header "_cxts.h") |
|
set(pch_src "precomp.cpp") |
|
list(REMOVE_ITEM lib_srcs ${CMAKE_CURRENT_SOURCE_DIR}/${pch_src}) |
|
set(lib_srcs ${CMAKE_CURRENT_SOURCE_DIR}/${pch_src} ${lib_srcs}) |
|
foreach(src_file ${lib_srcs}) |
|
if(${src_file} MATCHES ${pch_src}) |
|
set_source_files_properties( |
|
${src_file} |
|
PROPERTIES |
|
COMPILE_FLAGS "/Yc${pch_header}" |
|
) |
|
else() |
|
set_source_files_properties( |
|
${src_file} |
|
PROPERTIES |
|
COMPILE_FLAGS "/Yu${pch_header}" |
|
) |
|
endif() |
|
endforeach() |
|
endif() |
|
|
|
# ---------------------------------------------------------------------------------- |
|
# Define the library target: |
|
# ---------------------------------------------------------------------------------- |
|
set(the_target "opencv_ts") |
|
|
|
add_library(${the_target} ${lib_srcs} ${lib_hdrs}) |
|
|
|
# For dynamic link numbering convenions |
|
set_target_properties(${the_target} PROPERTIES |
|
VERSION ${OPENCV_VERSION} |
|
SOVERSION ${OPENCV_SOVERSION} |
|
OUTPUT_NAME "${the_target}${OPENCV_DLLVERSION}" |
|
) |
|
|
|
# Additional target properties |
|
set_target_properties(${the_target} PROPERTIES |
|
DEBUG_POSTFIX "${OPENCV_DEBUG_POSTFIX}" |
|
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib/" |
|
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin/" |
|
DEFINE_SYMBOL "CVAPI_EXPORTS" |
|
) |
|
|
|
add_dependencies(${the_target} opencv_core) |
|
|
|
# Add the required libraries for linking: |
|
target_link_libraries(${the_target} ${OPENCV_LINKER_LIBS} opencv_core) |
|
|
|
if(WIN32) |
|
install(TARGETS ${the_target} |
|
RUNTIME DESTINATION bin COMPONENT main |
|
LIBRARY DESTINATION lib COMPONENT main |
|
ARCHIVE DESTINATION lib COMPONENT main) |
|
endif()
|
|
|