diff --git a/share/openbr/cmake/FindStasm.cmake b/share/openbr/cmake/FindStasm.cmake deleted file mode 100644 index bf026dd..0000000 --- a/share/openbr/cmake/FindStasm.cmake +++ /dev/null @@ -1,20 +0,0 @@ -# ================================================================ -# The Stasm CMake configuration file -# -# Usage from an external project: -# In your CMakeLists.txt, add these lines: -# -# find_package(Stasm REQUIRED) -# target_link_libraries(MY_TARGET ${Stasm_LIBS}) -# ================================================================ - -find_path(Stasm_DIR include/stasm.hpp ${CMAKE_SOURCE_DIR}/3rdparty/*) - -add_subdirectory(${Stasm_DIR} ${Stasm_DIR}/build) - -set(SRC ${SOURCE};${SRC}) - -include_directories(${Stasm_DIR}/include) -link_directories(${Stasm_DIR}/build) - -set(Stasm_LIBS stasm)