Implement a simple GTK3 launcher.

This commit is contained in:
2018-03-24 15:43:11 +01:00
parent a0a39c82c7
commit 0851f624db
4 changed files with 1225 additions and 0 deletions

View File

@@ -43,3 +43,10 @@ find_package(Protobuf REQUIRED)
add_executable(deinplace "src/tools/deinplace.cpp")
target_compile_options(deinplace PRIVATE "-Wall" "-Wextra" "-pedantic")
target_link_libraries(deinplace Caffe::Caffe protobuf::libprotobuf)
# Build isntructions for the launcher tool
find_package(GTK3 REQUIRED COMPONENTS gtk gtkmm)
find_package(Boost REQUIRED COMPONENTS filesystem)
add_executable(fmri-launcher src/tools/launcher.cpp)
target_compile_options(fmri-launcher PRIVATE "-Wall" "-Wextra" "-pedantic")
target_link_libraries(fmri-launcher GTK3::gtkmm Boost::filesystem)