X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=CMakeLists.txt;h=dacb972306eb90bc993bc7b318f1abe025b270e4;hb=0cf9fb2478628f5b4c5773edd1d6ad1a895ccaec;hp=bc30c30ea3800a4c267a7be0cf4be92d246b2883;hpb=b08d7222556b0a56b4fc61782faa4664a0368d59;p=pulseview.git diff --git a/CMakeLists.txt b/CMakeLists.txt index bc30c30..dacb972 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,9 +19,13 @@ ## cmake_minimum_required(VERSION 2.6) + include(FindPkgConfig) include(GNUInstallDirs) +set (CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMake") +include(cotire) + project(pulseview) #=============================================================================== @@ -137,6 +141,7 @@ set(pulseview_SOURCES pv/view/viewport.cpp ) +# This list includes only QObject derrived class headers set(pulseview_HEADERS pv/mainwindow.h pv/sigsession.h @@ -235,6 +240,7 @@ add_executable(${PROJECT_NAME} ) target_link_libraries(${PROJECT_NAME} ${PULSEVIEW_LINK_LIBS}) +cotire(${PROJECT_NAME}) if(WIN32) # Pass -mwindows so that no "DOS box" will open when PulseView is started.