Giter Site home page Giter Site logo

cpplib's Introduction

Introduction

A collection of useful C++ libraries.

Install on Linux

Install cmake, g++, gcc, and libgflags-dev.

sudo apt install cmake g++ gcc libgflags-dev 7za-full

7za-full is used for handling gzip compression file IO.

Clone cpplib

Then clone the repository into directory $ENV{GIT_REPO}/cpplib. Here GIT_REPO is an environment variable (e.g., defined in .zshenv).

git clone --recursive https://github.com/zzjjzzgggg/cpplib.git

Compile

mkdir build
cd build
cmake ..
make

Tell cmake where to find the library

This requires another repository cmake.

git clone https://github.com/zzjjzzgggg/cmake.git

Then add following line in your project CMakeLists.txt.

set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} $ENV{GIT_REPO}/cmake)

Tell make where to find the library

Set environment variable CPPLIB_DIR in .zshenv or other place, e.g.,

export CPPLIB_DIR=$HOME/git_project/cpplib

In your Makefile, add follows

IDIR=-I$(CPPLIB_DIR) -I/usr/include/gflags
LIBS=-L$(CPPLIB_DIR)/lib -losutils -lioutils -lstrutils -lgflags

test: test.cpp
  g++ $(IDIR) $(LIBS) -Wall -o $@ $<

cpplib's People

Contributors

3650209 avatar zzjjzzgggg avatar

Watchers

 avatar

Forkers

maoli17

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.