Define simple configuration on INI files.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

123456789101112131415161718
  1. # `ini-config`
  2. ## Building
  3. ```shell
  4. mkdir build
  5. cmake "-DCMAKE_MT=%CMAKE_MT%" -G Ninja -S . -B build
  6. cmake --build build -t ini-config
  7. ```
  8. ## Testing
  9. ```shell
  10. cmake --build build -t test-int
  11. cmake --build build -t test-string
  12. cd build
  13. ctest
  14. ```