|
From: <kin...@us...> - 2025-09-10 01:08:45
|
Revision: 7386
http://sourceforge.net/p/teem/code/7386
Author: kindlmann
Date: 2025-09-10 01:08:19 +0000 (Wed, 10 Sep 2025)
Log Message:
-----------
still in progress
Modified Paths:
--------------
teem/trunk/CMake/CheckLibM.cmake
Modified: teem/trunk/CMake/CheckLibM.cmake
===================================================================
--- teem/trunk/CMake/CheckLibM.cmake 2025-09-10 00:52:48 UTC (rev 7385)
+++ teem/trunk/CMake/CheckLibM.cmake 2025-09-10 01:08:19 UTC (rev 7386)
@@ -73,6 +73,7 @@
cmake_minimum_required(VERSION 3.13)
project(CheckLibM_${suffix} C)
+set(CMAKE_VERBOSE_MAKEFILE OFF)
add_library(tiny SHARED \"${_checklibm_dir}/tiny.c\")
add_executable(maintiny \"${_checklibm_dir}/maintiny.c\")
target_link_libraries(maintiny PRIVATE tiny ${extra_libs})
@@ -79,7 +80,10 @@
")
# Compile the project
- try_compile(_ok "${_proj_dir}/build" "${_proj_dir}" CheckLibM_${suffix}
+ try_compile(_ok
+ "${_proj_dir}/build"
+ "${_proj_dir}"
+ CheckLibM_${suffix}
OUTPUT_VARIABLE _out)
if(NOT _ok)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|