Define simple configuration on INI files.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. ```