https://github.com/sonsongithub/gflags
CMake compatible version of Google's "Commandline flags module for C++"
https://github.com/sonsongithub/gflags
Last synced: about 2 months ago
JSON representation
CMake compatible version of Google's "Commandline flags module for C++"
- Host: GitHub
- URL: https://github.com/sonsongithub/gflags
- Owner: sonsongithub
- License: bsd-3-clause
- Created: 2013-04-23T01:31:03.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2012-09-25T16:35:35.000Z (over 12 years ago)
- Last Synced: 2025-02-03T14:47:19.219Z (4 months ago)
- Language: C++
- Size: 193 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
Gflags 2.0
==========This repository contains a C++ version of the Google commandline flags module.
Documentation for the C++ implementation is in doc/.Origin
------The code was taken from https://code.google.com/p/gflags/ and adapted
to work with cmake properly.Installation
------------For building in a Unix environment, simply type
cmake -G 'Unix Makefiles' && make && make install
On windows, open a command prompt and enter
cmake -G 'Visual Studio 10'
This will generate project files for Visual Studio 2010.
Of course you can use any other CMake generator you like.