Define simple configuration on INI files.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
230 B

  1. cmake_minimum_required(VERSION 3.24)
  2. project(ini_config C)
  3. set(CMAKE_C_STANDARD 11)
  4. include_directories(
  5. "${CMAKE_HOME_DIRECTORY}/subprojects/minIni/dev"
  6. )
  7. add_executable(ini_config
  8. ini-config.c
  9. ini-config.h)