forked from opencv/opencv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
"atomic bomb" commit. Reorganized OpenCV directory structure
- Loading branch information
Vadim Pisarevsky
committed
May 11, 2010
0 parents
commit 127d664
Showing
1,761 changed files
with
1,622,588 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
add_subdirectory(flann) | ||
add_subdirectory(lapack) | ||
add_subdirectory(zlib) | ||
if(WITH_JASPER AND NOT JASPER_FOUND) | ||
add_subdirectory(libjasper) | ||
endif() | ||
if(WITH_JPEG AND NOT JPEG_FOUND) | ||
add_subdirectory(libjpeg) | ||
endif() | ||
if(WITH_PNG AND NOT PNG_FOUND) | ||
add_subdirectory(libpng) | ||
endif() | ||
if(WITH_TIFF AND NOT TIFF_FOUND) | ||
add_subdirectory(libtiff) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
if (DEFINED OPENCV_VERSION) | ||
|
||
# ---------------------------------------------------------------------------- | ||
# CMake file for libflann. See root CMakeLists.txt | ||
# | ||
# ---------------------------------------------------------------------------- | ||
project(flann) | ||
|
||
# List of C++ files: | ||
|
||
#set(CMAKE_BUILD_TYPE Debug) | ||
|
||
include_directories( | ||
${CMAKE_CURRENT_SOURCE_DIR} | ||
${CMAKE_CURRENT_SOURCE_DIR}/algorithms | ||
${CMAKE_CURRENT_SOURCE_DIR}/util | ||
${CMAKE_CURRENT_SOURCE_DIR}/nn | ||
"${CMAKE_CURRENT_SOURCE_DIR}/../include/flann" | ||
) | ||
|
||
# The .cpp files: | ||
file(GLOB_RECURSE flann_sources_cpp *.cpp) | ||
file(GLOB_RECURSE flann_sources_h1 "${CMAKE_CURRENT_SOURCE_DIR}/../include/flann/*.h" "${CMAKE_CURRENT_SOURCE_DIR}/../include/flann/*.hpp") | ||
file(GLOB_RECURSE flann_sources_h2 *.h *.hpp) | ||
|
||
source_group("Src" FILES ${flann_sources_cpp}) | ||
source_group("Include\\External" FILES ${flann_sources_h1}) | ||
source_group("Include\\Internal" FILES ${flann_sources_h2}) | ||
|
||
set(flann_sources ${flann_sources_cpp} ${flann_sources_h1} ${flann_sources_h2}) | ||
|
||
# ---------------------------------------------------------------------------------- | ||
# Define the library target: | ||
# ---------------------------------------------------------------------------------- | ||
|
||
set(the_target "flann") | ||
|
||
add_library(${the_target} STATIC ${flann_sources}) | ||
add_definitions(-Dflann_EXPORTS) | ||
|
||
if(MSVC) | ||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W3") | ||
add_definitions(-DJAS_WIN_MSVC_BUILD) | ||
endif() | ||
|
||
if(UNIX) | ||
if(CMAKE_COMPILER_IS_GNUCXX OR CV_ICC) | ||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC") | ||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC") | ||
endif() | ||
endif() | ||
|
||
set_target_properties(${the_target} | ||
PROPERTIES | ||
OUTPUT_NAME "${the_target}" | ||
DEBUG_POSTFIX "${OPENCV_DEBUG_POSTFIX}" | ||
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/3rdparty/lib" | ||
) | ||
|
||
ELSE() | ||
|
||
INCLUDE_DIRECTORIES(algorithms util nn .) | ||
|
||
ADD_SUBDIRECTORY( tests ) | ||
|
||
file(GLOB_RECURSE SOURCES *.cpp) | ||
#SET(SOURCES flann.cpp util/Random.cpp nn/Testing.cpp algorithms/NNIndex.cpp algorithms/dist.cpp util/Logger.cpp util/Saving.cpp) | ||
|
||
ADD_LIBRARY(flann ${SOURCES}) | ||
#ADD_LIBRARY(flann SHARED ${SOURCES}) #JL: Why the two versions?? | ||
#ADD_LIBRARY(flann_s STATIC ${SOURCES}) | ||
|
||
IF(WIN32) | ||
INSTALL ( | ||
TARGETS flann | ||
RUNTIME DESTINATION matlab | ||
) | ||
INSTALL ( | ||
TARGETS flann | ||
RUNTIME DESTINATION python/pyflann/bindings | ||
) | ||
ELSE(WIN32) | ||
INSTALL ( | ||
TARGETS flann | ||
LIBRARY DESTINATION python/pyflann/bindings | ||
) | ||
ENDIF(WIN32) | ||
|
||
INSTALL ( | ||
TARGETS flann # flann_s | ||
RUNTIME DESTINATION bin | ||
LIBRARY DESTINATION lib | ||
ARCHIVE DESTINATION lib | ||
) | ||
|
||
# INSTALL ( | ||
# TARGETS flann flann_s | ||
# ARCHIVE DESTINATION ${PROJECT_SOURCE_DIR}/python | ||
# LIBRARY DESTINATION ${PROJECT_SOURCE_DIR}/python | ||
# ) | ||
|
||
INSTALL ( | ||
FILES flann.h constants.h | ||
DESTINATION include | ||
) | ||
|
||
ENDIF() |
Oops, something went wrong.