https://github.com/ebu/packito
Automake project generator (C++)
https://github.com/ebu/packito
Last synced: 9 months ago
JSON representation
Automake project generator (C++)
- Host: GitHub
- URL: https://github.com/ebu/packito
- Owner: ebu
- License: other
- Created: 2013-05-29T15:43:18.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-06-11T17:59:12.000Z (about 13 years ago)
- Last Synced: 2024-04-13T22:26:55.570Z (about 2 years ago)
- Language: C++
- Size: 141 KB
- Stars: 1
- Watchers: 7
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
>> sh autogen.sh
>> ./configure
>> make
or
>> sh autogen.sh
>> ./configure PKG_CONFIG_PATH=/Path/to/pkgconfig
>> make
or quicker from src directory
>> c++ -std=c++11 *.cpp -o demo-linux `pkg-config --libs --cflags gtkmm-3.0 gdkmm-3.0` -W -Wall
or
>> g++ -std=c++11 *.cpp -o demo-linux `pkg-config --libs --cflags gtkmm-3.0 gdkmm-3.0` -W -Wall