File: FindMPFRCPP.cmake

package info (click to toggle)
yade 2025.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 33,308 kB
  • sloc: cpp: 93,298; python: 50,409; sh: 577; makefile: 162
file content (20 lines) | stat: -rw-r--r-- 729 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
##########################################################################
#  2019        Janek Kozicki                                             #
#                                                                        #
#  This program is free software; it is licensed under the terms of the  #
#  GNU General Public License v2 or later. See file LICENSE for details. #
##########################################################################
#
# This module sets following variable:
#
#  MPFRCPP_FOUND  - libmpfrc++-dev found


MESSAGE(STATUS "Checking /usr/include/mpreal.h provided by package libmpfrc++-dev")

if(EXISTS "/usr/include/mpreal.h")
    set(MPFRCPP_FOUND TRUE)
else()
    set(MPFRCPP_FOUND FALSE)
endif()