Reimplement launcher without glade.

This commit is contained in:
2018-03-24 17:32:08 +01:00
parent f2e2fdd308
commit 6390a9ba1f
4 changed files with 57 additions and 849 deletions

View File

@@ -47,6 +47,6 @@ 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 src/tools/launcher.hpp)
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)
target_link_libraries(fmri-launcher GTK3::gtkmm Boost::filesystem GTK3::gtk)