From 4f451a89f14759206de252a3e629550562d942fb Mon Sep 17 00:00:00 2001 From: TheoryOfNekomata Date: Thu, 18 Jan 2024 20:48:33 +0800 Subject: [PATCH] Update CMakeLists Make it work with Meson. --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f437789..49ba9e7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.24) -project(ini-config C) +project(ini_config C) set(CMAKE_C_STANDARD 11) include(CTest) @@ -10,7 +10,7 @@ include_directories( ) add_library( - ini-config STATIC + ini_config STATIC src/ini-config.c src/ini-config.h src/types/int.c @@ -20,7 +20,7 @@ add_library( ) add_executable( - test-int + test_int minIni/dev/minIni.h minIni/dev/minIni.c tests/test-int.c