Define simple configuration on INI files.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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