X-Git-Url: https://git.cworth.org/git?p=vogl;a=blobdiff_plain;f=src%2Fvogleditor%2FCMakeLists.txt;h=e63fd93b886bcd2162023d60781572dd76b92fe2;hp=15996cb82595d57d9b3ce0b52ae7e6394c876d5a;hb=9efcfb2c254b732a4d9494c08ad6641cebb7ce79;hpb=23c18e4ca34e89d0032c38f7ed32c0a39c185d36 diff --git a/src/vogleditor/CMakeLists.txt b/src/vogleditor/CMakeLists.txt index 15996cb..e63fd93 100644 --- a/src/vogleditor/CMakeLists.txt +++ b/src/vogleditor/CMakeLists.txt @@ -3,6 +3,8 @@ cmake_minimum_required(VERSION 2.8.9) include("${SRC_DIR}/build_options.cmake") find_package(Qt4 REQUIRED) +find_package(Threads REQUIRED) +find_package(X11 REQUIRED) include_directories( ${SRC_DIR} @@ -149,9 +151,12 @@ target_link_libraries(${PROJECT_NAME} ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${TELEMETRY_LIBRARY} + ${CMAKE_THREAD_LIBS_INIT} + ${X11_X11_LIB} backtrace voglcommon - voglcore + voglcore + dl ) build_options_finalize()