Skip to content

Commit c1e8462

Browse files
committedJun 22, 2024
Regex match Make.inc to match CMake version with Autotools version
1 parent 3335ebc commit c1e8462

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎CMakeLists.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
cmake_minimum_required(VERSION 3.25)
22

3+
# Get version string from Make.inc
4+
file(READ "${CMAKE_CURRENT_LIST_DIR}/Make.inc" MAKE_FILE)
5+
string(REGEX MATCH "VERSION = ([0-9\.]+)" _ ${MAKE_FILE})
6+
37
project(openlibm
4-
VERSION 0.8.4
8+
VERSION ${CMAKE_MATCH_1}
59
LANGUAGES C ASM)
610

711
option(BUILD_SHARED_LIBS "Build using shared libraries" ON)

0 commit comments

Comments
 (0)