diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2020-12-17 21:07:12 -0500 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2020-12-17 21:07:12 -0500 |
commit | 776c350eb654c78a21a6163dcc82d802039c76e6 (patch) | |
tree | 2c995e6e77bfd0436d560f6494af16a8b9a8c7e6 /CMakeLists.txt | |
parent | 58d0424dfc47e99c9c21396819a2234df158b4d0 (diff) | |
download | abaddon-portaudio-776c350eb654c78a21a6163dcc82d802039c76e6.tar.gz abaddon-portaudio-776c350eb654c78a21a6163dcc82d802039c76e6.zip |
make LaunchBrowser better
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2452ead..94414f9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,6 +13,7 @@ find_library(GTKMM_LIBRARY gtkmm) include_directories(${GTKMM_INCLUDE_DIRS}) find_library(GLIB_LIBRARY glib-2.0) +find_library(GTK_LIBRARY gtk-3.0) find_path(GLIBMM_INCLUDE_DIRS glibmm.h) find_library(GLIBMM_LIBRARY glibmm) @@ -91,6 +92,7 @@ target_link_libraries(abaddon ${ATKMM_LIBRARY}) target_link_libraries(abaddon ${CURL_LIBRARY}) target_link_libraries(abaddon ${CPR_LIBRARY}) target_link_libraries(abaddon ${ZLIB_LIBRARY}) +target_link_libraries(abaddon ${GTK_LIBRARY}) if(NOT DISABLE_MBEDTLS) target_link_libraries(abaddon ${MBEDTLS_TLS_LIBRARY}) target_link_libraries(abaddon ${MBEDTLS_X509_LIBRARY}) |