{"id":13544411,"url":"https://github.com/i8degrees/nomlib","last_synced_at":"2025-04-02T14:31:01.955Z","repository":{"id":144745641,"uuid":"9707652","full_name":"i8degrees/nomlib","owner":"i8degrees","description":"C++11 2D game framework using SDL2","archived":false,"fork":false,"pushed_at":"2025-01-12T04:46:12.000Z","size":60868,"stargazers_count":5,"open_issues_count":3,"forks_count":1,"subscribers_count":4,"default_branch":"dev","last_synced_at":"2025-01-12T05:25:27.076Z","etag":null,"topics":["c-plus-plus","cmake","game-engine","gamedev","sdl","ttcards","universal","visual-studio"],"latest_commit_sha":null,"homepage":"https://sourceforge.net/projects/nomlib/files","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/i8degrees.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.md"}},"created_at":"2013-04-27T01:59:17.000Z","updated_at":"2022-11-24T21:47:12.000Z","dependencies_parsed_at":"2024-01-19T06:26:27.357Z","dependency_job_id":"1634623e-db92-48bd-91eb-b35c38b55401","html_url":"https://github.com/i8degrees/nomlib","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/i8degrees%2Fnomlib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/i8degrees%2Fnomlib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/i8degrees%2Fnomlib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/i8degrees%2Fnomlib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/i8degrees","download_url":"https://codeload.github.com/i8degrees/nomlib/tar.gz/refs/heads/dev","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246832176,"owners_count":20841123,"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-plus-plus","cmake","game-engine","gamedev","sdl","ttcards","universal","visual-studio"],"created_at":"2024-08-01T11:00:47.976Z","updated_at":"2025-04-02T14:30:56.941Z","avatar_url":"https://github.com/i8degrees.png","language":"C++","funding_links":[],"categories":["C/C++"],"sub_categories":["Multimedia"],"readme":"# nomlib\n\n[![Build Status](https://travis-ci.org/i8degrees/nomlib.png?branch=master,dev)](https://travis-ci.org/i8degrees/nomlib)\n\nC++11 2D game framework using SDL2\n\n## Projects Using nomlib\n\n* [i8degrees/ttcards](https://github.com/i8degrees/ttcards)\n\n## Building\n\nFirst, ensure that you have the following core dependencies installed:\n\n* [cmake v2.8.12+](http://www.cmake.org/)\n* [git](http://git-scm.com/download/)\n* [doxygen v1.8.x](http://www.stack.nl/~dimitri/doxygen/) and [graphviz](http://www.graphviz.org/) only if you want to generate developer documentation.\n\nNext, you should visit the dependencies section for your platform. After these mundane chores are complete, you should be ready to start the building process for your platform!\n\n### Mac OS X\n\nAfter you have the dependencies taken care of, execute the following commands at your terminal prompt:\n\n```\ngit clone https://github.com/i8degrees/nomlib\ncd nomlib\nmkdir build \u0026\u0026 cd build\n# XCode project files can be generated by passing -GXcode\ncmake -DDEBUG=on -DDEBUG_ASSERT=on -DEXAMPLES=off -DNOM_BUILD_TESTS=on -DCMAKE_OSX_DEPLOYMENT_TARGET=10.7 -DCMAKE_INSTALL_PREFIX=~/Library/Frameworks ..\nmake\nmake test\nmake install\n```\n\nUpon a successful build, you should have the library modules built as OS X framework bundles, installed wherever CMAKE_INSTALL_PREFIX was set to.\n\n### Linux\n\nLinux builds are broken at the moment.\n\n~~Until I get around to writing the proper instructions, you may take a look at my\n.travis.yml build script in the project root of nomlib for hints!~~\n\n### Windows\n\n**NOTE:** Alpha build quality. This has only been tested on MS Windows 7.\n\nAfter you have the dependencies taken care of, execute the following commands at the DOS prompt:\n\n```\ngit clone https://github.com/i8degrees/nomlib\ncd nomlib\nmkdir build \u0026\u0026 cd build\ncmake -G\"Visual Studio 12\" -DARCH_32=on -DDEBUG=on -DDEBUG_ASSERT=on -DEXAMPLES=off -DNOM_BUILD_TESTS=on ..\n```\n\nUpon a successful generation, you should have populated your current build directory with several Visual Studio project files -- **nomlib.vcxproj** is the top-level solution.\n\n### Project Options\n\nBuild options are passed to cmake with the -D option. For example, to change the installation prefix:\n\n```\ncmake -D CMAKE_INSTALL_PREFIX=~/Library/Frameworks ..\n```\n\n  - Installation path: -D CMAKE_INSTALL_PREFIX=**\\\u003cDIRECTORY_PREFIX\\\u003e**\n    * Defaults to your current **build** directory\n\n  - Documentation: -D DOCS=**\\\u003cBOOLEAN\\\u003e**\n    * Defaults to **OFF**\n    * When built (**ON**), the resulting documentation will reside in a new directory named **docs**\n\n  - Examples: -D EXAMPLES=**\\\u003cBOOLEAN\\\u003e**\n    * Defaults to **OFF**\n    * When built (**ON**), the resulting binaries will reside in a new directory named **examples**\n\n  - Debugging: -D DEBUG=**\\\u003cBOOLEAN\\\u003e** -D DEBUG_ASSERT=**\\\u003cBOOLEAN\\\u003e**\n    * Defaults to **OFF**\n\n  - Universal binary: -D UNIVERSAL=**\\\u003cBOOLEAN\\\u003e**\n    * Defaults to **OFF**\n\nRemoval is provided by executing **make uninstall** within your current build directory.\n\n**IMPORTANT:** If you are building multiple target types with the generated MSVCPP or Xcode project files, each of these targets **must** be kept in separate build directories!\n\n## Mac OS X Dependencies\n\nRequired OS X version: 10.7\n\nSee **third-party/README.md** for where to obtain pre-packaged libraries and how to install them.\n\n## Microsoft Windows Dependencies\n\nRequired version: Microsoft Windows Vista\n\n**NOTE**: This has not been verified.\n\nSee **third-party/README.md** for where to obtain pre-packaged libraries and how to install them.\n\n* [Microsoft Visual Studio Express 2013 for Windows](http://www.microsoft.com/visualstudio/eng#downloads)\n\n  - Required software tools in your system PATH\n    * MSVSCPP -- **\\\u003cMSVSCPP_INSTALL_PATH\\\u003e\\bin**\n    * CMake -- **\\\u003cCMAKE_INSTALL_PATH\\\u003e\\bin**\n    * Git -- **\\\u003cGIT_INSTALL_PATH\\\u003e\\bin**\n\nIf this is your first time installing the tools, you might be happy to know that the official installers can do this task for you automatically.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fi8degrees%2Fnomlib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fi8degrees%2Fnomlib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fi8degrees%2Fnomlib/lists"}