CMakeLists.txt 180 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 if(UNIX) find_package(Threads REQUIRED) endif() add_executable(br br.cpp) target_link_libraries(br openbr ${CMAKE_THREAD_LIBS_INIT}) install(TARGETS br RUNTIME DESTINATION bin)