Files
2015-04-11 22:50:11 +10:00

9 lines
243 B
Python

import os
NAME = 'systemd_logger'
CFLAGS = os.popen('pkg-config --cflags libsystemd-journal').read().rstrip().split()
LDFLAGS = []
LIBS = os.popen('pkg-config --libs libsystemd-journal').read().rstrip().split()
GCC_LIST = ['systemd_logger']