TBB support for WinRT fixed.
Development release of TBB with WinRT support added; TBB.dll is placed in bin folder now.
This commit is contained in:
parent
43122939cb
commit
08a0e1c91b
31
3rdparty/tbb/CMakeLists.txt
vendored
31
3rdparty/tbb/CMakeLists.txt
vendored
@ -1,12 +1,19 @@
|
|||||||
#Cross compile TBB from source
|
#Cross compile TBB from source
|
||||||
project(tbb)
|
project(tbb)
|
||||||
|
|
||||||
# 4.1 update 3 dev - works fine
|
# Development release
|
||||||
set(tbb_ver "tbb41_20130401oss")
|
set(tbb_ver "tbb41_20130516oss")
|
||||||
set(tbb_url "http://threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb41_20130401oss_src.tgz")
|
set(tbb_url "http://threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb41_20130516oss_src.tgz")
|
||||||
set(tbb_md5 "f2f591a0d2ca8f801e221ce7d9ea84bb")
|
set(tbb_md5 "08c14d1c196bc9595d8c52bedc239937")
|
||||||
set(tbb_version_file "version_string.ver")
|
set(tbb_version_file "version_string.ver")
|
||||||
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wshadow)
|
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wshadow -Wunused-parameter)
|
||||||
|
|
||||||
|
# 4.1 update 3 dev - works fine
|
||||||
|
#set(tbb_ver "tbb41_20130401oss")
|
||||||
|
#set(tbb_url "http://threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb41_20130401oss_src.tgz")
|
||||||
|
#set(tbb_md5 "f2f591a0d2ca8f801e221ce7d9ea84bb")
|
||||||
|
#set(tbb_version_file "version_string.ver")
|
||||||
|
#ocv_warnings_disable(CMAKE_CXX_FLAGS -Wshadow)
|
||||||
|
|
||||||
# 4.1 update 2 - works fine
|
# 4.1 update 2 - works fine
|
||||||
#set(tbb_ver "tbb41_20130116oss")
|
#set(tbb_ver "tbb41_20130116oss")
|
||||||
@ -115,7 +122,6 @@ if(NOT EXISTS "${tbb_src_dir}")
|
|||||||
|
|
||||||
if(NOT tbb_untar_RESULT EQUAL 0 OR NOT EXISTS "${tbb_src_dir}")
|
if(NOT tbb_untar_RESULT EQUAL 0 OR NOT EXISTS "${tbb_src_dir}")
|
||||||
message(FATAL_ERROR "Failed to unpack TBB sources (${tbb_untar_RESULT} ${tbb_src_dir})")
|
message(FATAL_ERROR "Failed to unpack TBB sources (${tbb_untar_RESULT} ${tbb_src_dir})")
|
||||||
|
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@ -133,12 +139,16 @@ list(APPEND lib_srcs "${tbb_src_dir}/src/rml/client/rml_tbb.cpp")
|
|||||||
if (WIN32)
|
if (WIN32)
|
||||||
add_definitions(-D__TBB_DYNAMIC_LOAD_ENABLED=0
|
add_definitions(-D__TBB_DYNAMIC_LOAD_ENABLED=0
|
||||||
/D__TBB_BUILD=1
|
/D__TBB_BUILD=1
|
||||||
|
/DTBB_NO_LEGACY=1
|
||||||
/D_UNICODE
|
/D_UNICODE
|
||||||
/DUNICODE
|
/DUNICODE
|
||||||
/DWINAPI_FAMILY=WINAPI_FAMILY_APP
|
/DWINAPI_FAMILY=WINAPI_FAMILY_APP
|
||||||
/DDO_ITT_NOTIFY=0
|
/DDO_ITT_NOTIFY=0
|
||||||
/DUSE_WINTHREAD
|
/DUSE_WINTHREAD
|
||||||
|
/D_WIN32_WINNT=0x0602
|
||||||
|
/D__TBB_WIN32_USE_CL_BUILTINS
|
||||||
) # defines were copied from windows.cl.inc
|
) # defines were copied from windows.cl.inc
|
||||||
|
|
||||||
set(CMAKE_LINKER_FLAGS "${CMAKE_LINKER_FLAGS} /APPCONTAINER")
|
set(CMAKE_LINKER_FLAGS "${CMAKE_LINKER_FLAGS} /APPCONTAINER")
|
||||||
else()
|
else()
|
||||||
add_definitions(-D__TBB_DYNAMIC_LOAD_ENABLED=0 #required
|
add_definitions(-D__TBB_DYNAMIC_LOAD_ENABLED=0 #required
|
||||||
@ -183,10 +193,10 @@ set(TBB_SOURCE_FILES ${TBB_SOURCE_FILES} "${CMAKE_CURRENT_SOURCE_DIR}/${tbb_vers
|
|||||||
|
|
||||||
add_library(tbb ${TBB_SOURCE_FILES})
|
add_library(tbb ${TBB_SOURCE_FILES})
|
||||||
|
|
||||||
if (WIN32)
|
if (ARM AND WIN32)
|
||||||
add_custom_command(TARGET tbb
|
add_custom_command(TARGET tbb
|
||||||
PRE_BUILD
|
PRE_BUILD
|
||||||
COMMAND ${CMAKE_C_COMPILER} /nologo /TC /EP ${tbb_src_dir}\\src\\tbb\\win32-tbb-export.def /DTBB_NO_LEGACY /DUSE_WINTHREAD /D_CRT_SECURE_NO_DEPRECATE /D_WIN32_WINNT=0x0400 /D__TBB_BUILD=1 /I${tbb_src_dir}\\src /I${tbb_src_dir}\\include > "${tbb_src_dir}\\src\\tbb\\tbb.def"
|
COMMAND ${CMAKE_C_COMPILER} /nologo /TC /EP ${tbb_src_dir}\\src\\tbb\\win32-tbb-export.def /DTBB_NO_LEGACY=1 /D_CRT_SECURE_NO_DEPRECATE /D__TBB_BUILD=1 /D_M_ARM=1 /I${tbb_src_dir}\\src /I${tbb_src_dir}\\include > "${tbb_src_dir}\\src\\tbb\\tbb.def"
|
||||||
WORKING_DIRECTORY ${tbb_src_dir}\\src\\tbb
|
WORKING_DIRECTORY ${tbb_src_dir}\\src\\tbb
|
||||||
COMMENT "Generating tbb.def file" VERBATIM
|
COMMENT "Generating tbb.def file" VERBATIM
|
||||||
)
|
)
|
||||||
@ -194,9 +204,7 @@ endif()
|
|||||||
|
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} /DEF:${tbb_src_dir}/src/tbb/tbb.def /DLL /MAP /fixed:no /INCREMENTAL:NO")
|
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} /DEF:${tbb_src_dir}/src/tbb/tbb.def /DLL /MAP /fixed:no /INCREMENTAL:NO")
|
||||||
endif()
|
else()
|
||||||
|
|
||||||
if (NOT WIN32)
|
|
||||||
target_link_libraries(tbb c m dl)
|
target_link_libraries(tbb c m dl)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@ -207,6 +215,7 @@ set_target_properties(tbb
|
|||||||
PROPERTIES OUTPUT_NAME tbb
|
PROPERTIES OUTPUT_NAME tbb
|
||||||
DEBUG_POSTFIX "${OPENCV_DEBUG_POSTFIX}"
|
DEBUG_POSTFIX "${OPENCV_DEBUG_POSTFIX}"
|
||||||
ARCHIVE_OUTPUT_DIRECTORY ${3P_LIBRARY_OUTPUT_PATH}
|
ARCHIVE_OUTPUT_DIRECTORY ${3P_LIBRARY_OUTPUT_PATH}
|
||||||
|
RUNTIME_OUTPUT_DIRECTORY ${EXECUTABLE_OUTPUT_PATH}
|
||||||
)
|
)
|
||||||
|
|
||||||
if(ENABLE_SOLUTION_FOLDERS)
|
if(ENABLE_SOLUTION_FOLDERS)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user