Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 657300 | Differences between
and this patch

Collapse All | Expand All

(-)a/CMakeLists.txt (-5 / +1 lines)
Lines 3-9 Link Here
3
3
4
cmake_minimum_required (VERSION 3.1 FATAL_ERROR)
4
cmake_minimum_required (VERSION 3.1 FATAL_ERROR)
5
5
6
project (soxr C)
6
project (soxr)
7
set (DESCRIPTION_SUMMARY
7
set (DESCRIPTION_SUMMARY
8
    "High quality, one-dimensional sample-rate conversion library")
8
    "High quality, one-dimensional sample-rate conversion library")
9
9
Lines 100-109 Link Here
100
  set (LIBM_LIBRARIES m)
100
  set (LIBM_LIBRARIES m)
101
endif ()
101
endif ()
102
102
103
if (${BUILD_EXAMPLES})
104
  project (${PROJECT_NAME}) # Adds c++ compiler
105
endif ()
106
107
if (WITH_OPENMP)
103
if (WITH_OPENMP)
108
  find_package (OpenMP)
104
  find_package (OpenMP)
109
  if (OPENMP_FOUND)
105
  if (OPENMP_FOUND)

Return to bug 657300