/[svn]/qsampler/trunk/CMakeLists.txt
ViewVC logotype

Diff of /qsampler/trunk/CMakeLists.txt

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3850 by capela, Thu Jan 7 16:18:02 2021 UTC revision 3851 by capela, Mon Jan 18 12:04:37 2021 UTC
# Line 1  Line 1 
1  project(qsampler)  cmake_minimum_required(VERSION 3.10)
2    
3  cmake_minimum_required(VERSION 3.1)  project(qsampler)
4    
5  set (VERSION "0.9.1")  set (VERSION "0.9.1")
6    
# Line 108  endif () Line 108  endif ()
108  find_package (PkgConfig REQUIRED)  find_package (PkgConfig REQUIRED)
109    
110  # Check for LSCP libraries.  # Check for LSCP libraries.
111  pkg_check_modules (LSCP REQUIRED lscp)  pkg_check_modules (LSCP REQUIRED IMPORTED_TARGET lscp)
112  if (LSCP_FOUND)  if (LSCP_FOUND)
113    set (CONFIG_LIBLSCP 1)    set (CONFIG_LIBLSCP 1)
114    include_directories (${LSCP_INCLUDE_DIRS})    include_directories (${LSCP_INCLUDE_DIRS})
# Line 182  endif () Line 182  endif ()
182    
183  # Check for GIG libraries.  # Check for GIG libraries.
184  if (CONFIG_LIBGIG)  if (CONFIG_LIBGIG)
185    pkg_check_modules (GIG gig>=3.3.0)    pkg_check_modules (GIG IMPORTED_TARGET gig>=3.3.0)
186    if (GIG_FOUND)    if (GIG_FOUND)
187      include_directories (${GIG_INCLUDE_DIRS})      include_directories (${GIG_INCLUDE_DIRS})
188      link_directories (${GIG_LIBRARY_DIRS})      link_directories (${GIG_LIBRARY_DIRS})

Legend:
Removed from v.3850  
changed lines
  Added in v.3851

  ViewVC Help
Powered by ViewVC