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