{"id":13531378,"url":"https://github.com/frang75/nappgui_src","last_synced_at":"2025-05-15T16:03:16.949Z","repository":{"id":39013692,"uuid":"404408543","full_name":"frang75/nappgui_src","owner":"frang75","description":"SDK for building cross-platform desktop apps in ANSI-C","archived":false,"fork":false,"pushed_at":"2025-03-31T20:36:27.000Z","size":6639,"stargazers_count":557,"open_issues_count":56,"forks_count":61,"subscribers_count":23,"default_branch":"main","last_synced_at":"2025-03-31T21:35:08.895Z","etag":null,"topics":["c","cairo","cocoa","cross-platform","cross-platform-app","cross-platform-gui","gdi-plus","gtk3","quartz","win32"],"latest_commit_sha":null,"homepage":"https://www.nappgui.com","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/frang75.png","metadata":{"files":{"readme":"README.md","changelog":"Changelog.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-09-08T15:54:29.000Z","updated_at":"2025-03-31T20:36:30.000Z","dependencies_parsed_at":"2024-01-03T04:00:53.830Z","dependency_job_id":"177572ba-4184-4166-89e9-fa6806aa2d4b","html_url":"https://github.com/frang75/nappgui_src","commit_stats":{"total_commits":169,"total_committers":5,"mean_commits":33.8,"dds":0.07692307692307687,"last_synced_commit":"062d2a69ea187c2c983b0db02f022a7552295a19"},"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frang75%2Fnappgui_src","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frang75%2Fnappgui_src/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frang75%2Fnappgui_src/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frang75%2Fnappgui_src/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/frang75","download_url":"https://codeload.github.com/frang75/nappgui_src/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247737771,"owners_count":20987718,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c","cairo","cocoa","cross-platform","cross-platform-app","cross-platform-gui","gdi-plus","gtk3","quartz","win32"],"created_at":"2024-08-01T07:01:02.482Z","updated_at":"2025-04-07T22:04:18.433Z","avatar_url":"https://github.com/frang75.png","language":"C","readme":"# NAppGUI\nCross-Platform C SDK. Build portable desktop applications for Windows, macOS and Linux, using just C.\n\n![NAppGUI Stack](https://nappgui.com/img/start/nappgui_stack.png)\n\n## Quick start in Windows\n\n### Prerequisites\n- [Visual Studio](https://visualstudio.microsoft.com/vs/)\n- [CMake](https://cmake.org/download/)\n\n### Open the Developer Command Prompt\n```\ngit clone --depth 1 https://github.com/frang75/nappgui_src.git\ncd nappgui_src\ncmake -S . -B build\ncmake --build build --config Debug\n\n// Run examples in 'demo' folder\n.\\build\\Debug\\bin\\Die.exe\n.\\build\\Debug\\bin\\Bricks.exe\n.\\build\\Debug\\bin\\Products.exe\n.\\build\\Debug\\bin\\Col2dHello.exe\n.\\build\\Debug\\bin\\GuiHello.exe\n...\n```\n![Running demo project in Windows](https://nappgui.com/img/start/run_demo_windows.png)\n\n## Quick start in macOS\n\n### Prerequisites\n- [Xcode](https://developer.apple.com/xcode/)\n- [CMake](https://cmake.org/download/)\n\n### Open the Terminal\n```\ngit clone --depth 1 https://github.com/frang75/nappgui_src.git\ncd nappgui_src\ncmake -G Xcode -S . -B build\ncmake --build build --config Debug\n\n// Run examples in 'demo' folder\n./build/Debug/bin/Die.app/Contents/MacOS/Die\n./build/Debug/bin/Bricks.app/Contents/MacOS/Bricks\n./build/Debug/bin/Products.app/Contents/MacOS/Products\n./build/Debug/bin/Col2dHello.app/Contents/MacOS/Col2dHello\n./build/Debug/bin/GuiHello.app/Contents/MacOS/GuiHello\n...\n```\n![Running demo project in macOS](https://nappgui.com/img/start/run_demo_macos.png)\n\n## Quick start in Linux\n\n### Prerequisites\n```\n// Development tools\nsudo apt-get install build-essential\nsudo apt-get install git\nsudo apt-get install cmake\n\n// Development libraries\nsudo apt-get install libgtk-3-dev                       // Gui Toolkit\nsudo apt-get install libcurl4-openssl-dev               // For HTTP support\nsudo apt-get install libwebkit2gtk-4.1-dev              // For WebView support\nsudo apt-get install mesa-common-dev libglu1-mesa-dev libegl1-mesa-dev  // For OpenGL support\n```\n### Open the Terminal\n```\ngit clone --depth 1 https://github.com/frang75/nappgui_src.git\ncd nappgui_src\ncmake -S . -B build -DCMAKE_BUILD_TYPE=Debug\ncmake --build build -j 4\n\n// Run examples in 'demo' folder\n./build/Debug/bin/Die\n./build/Debug/bin/Bricks\n./build/Debug/bin/Products\n./build/Debug/bin/Col2dHello\n./build/Debug/bin/GuiHello\n...\n```\n![Running demo project in Linux](https://nappgui.com/img/start/run_demo_linux.png)\n\n## More info\n- [NAppGUI Quick Start](https://nappgui.com/en/start/quick.html)\n- [NAppGUI Hello World](https://nappgui.com/en/start/hello.html)\n- [Create a new project](https://nappgui.com/en/guide/newprj.html)\n- [About Portability](https://nappgui.com/en/guide/win_mac_linux.html)\n","funding_links":[],"categories":["GUI","Libraries"],"sub_categories":["C"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrang75%2Fnappgui_src","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffrang75%2Fnappgui_src","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrang75%2Fnappgui_src/lists"}