{"id":17656351,"url":"https://github.com/frang75/nappgui","last_synced_at":"2025-07-17T10:39:24.924Z","repository":{"id":54829509,"uuid":"194401589","full_name":"frang75/nappgui","owner":"frang75","description":"Cross-Platform C SDK (precompiled)","archived":false,"fork":false,"pushed_at":"2022-12-26T14:08:20.000Z","size":378262,"stargazers_count":88,"open_issues_count":3,"forks_count":6,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-04-28T17:16:53.344Z","etag":null,"topics":["c","cairo","cocoa","cross-platform","gdiplus","gtk3","quartz","win32"],"latest_commit_sha":null,"homepage":"https://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":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-06-29T12:10:08.000Z","updated_at":"2025-04-22T13:53:23.000Z","dependencies_parsed_at":"2023-01-31T00:21:36.299Z","dependency_job_id":null,"html_url":"https://github.com/frang75/nappgui","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/frang75/nappgui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frang75%2Fnappgui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frang75%2Fnappgui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frang75%2Fnappgui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frang75%2Fnappgui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/frang75","download_url":"https://codeload.github.com/frang75/nappgui/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frang75%2Fnappgui/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265596202,"owners_count":23794856,"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","gdiplus","gtk3","quartz","win32"],"created_at":"2024-10-23T14:30:32.591Z","updated_at":"2025-07-17T10:39:19.913Z","avatar_url":"https://github.com/frang75.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NAppGUI\nCross-Platform C SDK. Build portable desktop applications for Windows, macOS and Linux, using just C.\n\n**This repository ONLY have headers and precompiled libraries for the most popular compilers.** The source code is in [nappgui_src](https://github.com/frang75/nappgui_src).\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```\n(from C:\\)\n\ngit clone --depth 1 https://github.com/frang75/nappgui.git\ncd nappgui\ncmake -S ./src -B ./build\ncmake --build ./build --config Debug\n\n// Run examples in 'demo' and 'howto' folders\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```\n(from your home dir ~/)\n\ngit clone --depth 1 https://github.com/frang75/nappgui.git\ncd nappgui\ncmake -G Xcode -S ./src -B ./build\ncmake --build ./build --config Debug\n\n// Run examples in 'demo' and 'howto' folders\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\nsudo apt-get install libglu1-mesa-dev freeglut3-dev mesa-common-dev\nsudo apt-get install libcurl4-openssl-dev\n```\n### Open the Terminal\n```\n(from your home dir ~/)\n\ngit clone --depth 1 https://github.com/frang75/nappgui.git\ncd nappgui\ncmake -S ./src -B ./build -DCMAKE_BUILD_CONFIG=Debug\ncmake --build ./build -j 4\n\n// Run examples in 'demo' and 'howto' folders\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\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrang75%2Fnappgui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffrang75%2Fnappgui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrang75%2Fnappgui/lists"}