Replace configure.in + 7 Makefile.am files with a CMake build: - Top-level CMakeLists.txt with feature detection (SDL 1.2, SDL_image, OpenGL, optional OSS/ALSA), platform-specific install layouts (macOS .app bundle, Windows simple bundle, Unix), and a shared kobo_deps INTERFACE target for flags and link libraries. - Sub-CMakeLists for graphics/, sound/, eel/ static libraries. - aconfig.h.cmake.in and Info.plist.cmake.in templates (minimal: only the HAVE_* macros actually referenced by the code). Remove all autotools machinery: configure, configure.in, aclocal.m4, Makefile.am files, generated Makefile.in files, install-sh, missing, depcomp, compile, mkinstalldirs, config.guess, config.sub, the buildpkg.sh Solaris helper, and the cfg-* configure shortcuts. Update .gitignore for CMake out-of-tree builds, and point run-kobodl.sh at build/kobodl (overridable via KOBODL_BIN). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
29 lines
930 B
CMake
29 lines
930 B
CMake
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>English</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>@KOBO_EXEFILE@</string>
|
|
<key>CFBundleGetInfoString</key>
|
|
<string>@PROJECT_VERSION@, Copyright 2001 David Olofson</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>@PROJECT_NAME@</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>@PROJECT_VERSION@</string>
|
|
<key>CFBundleSignature</key>
|
|
<string>????</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>@PROJECT_VERSION@</string>
|
|
<key>NSPrincipalClass</key>
|
|
<string>NSApplication</string>
|
|
<key>NSHumanReadableCopyright</key>
|
|
<string>Copyright 2001 David Olofson</string>
|
|
</dict>
|
|
</plist>
|