Define simple configuration on INI files.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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