mirror of
https://github.com/mehah/otclient
synced 2026-08-15 16:29:06 -04:00
New Features: - Native macOS app with Cocoa windowing, OpenGL view, improved input, clipboard and cursor handling. - Platform-aware keyboard and shortcut behavior with clearer primary/meta/control semantics and normalized key combos. Bug Fixes: - Expanded detection for "connection refused" network errors. Chores: - macOS build/bundle and packaging improvements; new dependency overlay added; CI now runs macOS build when relevant. Tests: - AddressSanitizer support added for test builds.
7 lines
396 B
Text
7 lines
396 B
Text
The package inih provides unofficial CMake targets:
|
|
find_package(unofficial-inih CONFIG REQUIRED)
|
|
# C API
|
|
target_link_libraries(main PRIVATE unofficial::inih::libinih)
|
|
# C++ API (Requires "cpp" feature)
|
|
target_link_libraries(main PRIVATE unofficial::inih::inireader)
|
|
Alternatively, if you are using pkg-config use the name "inih" for the C API and "inireader" for the C++ API
|