Skip to content

Commit

Permalink
build: update build system
Browse files Browse the repository at this point in the history
Minor updates to the build-system and CI.

Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
  • Loading branch information
David Herrmann committed Aug 2, 2018
1 parent 071841c commit dda36d3
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 207 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ language: c
services:
- docker

install:
before_install:
- curl -O -L "https://raw.githubusercontent.com/cherry-pick/cherry-images/v1/scripts/vmrun"
- curl -O -L "https://raw.githubusercontent.com/cherry-pick/cherry-ci/v1/scripts/cherryci"
- chmod +x "./vmrun" "./cherryci"
Expand Down
201 changes: 0 additions & 201 deletions LICENSE

This file was deleted.

1 change: 1 addition & 0 deletions LICENSE
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
c-list - Circular Intrusive Double Linked List Collection in ISO-C11
c-list - Circular Intrusive Double Linked List Collection

CHANGES WITH 3:

Expand Down
6 changes: 3 additions & 3 deletions README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
c-list - Circular Intrusive Double Linked List Collection in ISO-C11
c-list - Circular Intrusive Double Linked List Collection

ABOUT:
The c-list project implements an intrusive collection based on circular
Expand Down Expand Up @@ -34,9 +34,9 @@ REQUIREMENTS:
pkg-config >= 0.29

INSTALL:
The meson build-system is used for c-list. Contact upstream
The meson build-system is used for this project. Contact upstream
documentation for detailed help. In most situations the following
commands are sufficient to build and install c-list from source:
commands are sufficient to build and install from source:

$ mkdir build
$ cd build
Expand Down
1 change: 1 addition & 0 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ project(
'c_std=c11',
],
)
project_description = 'Circular Intrusive Double Linked List Collection'

add_project_arguments('-D_GNU_SOURCE', language: 'c')
mod_pkgconfig = import('pkgconfig')
Expand Down
2 changes: 1 addition & 1 deletion src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if not meson.is_subproject()
version: meson.project_version(),
name: 'libclist',
filebase: 'libclist',
description: 'Circular Intrusive Double Linked List Collection in ISO-C11',
description: project_description,
)
endif

Expand Down

0 comments on commit dda36d3

Please sign in to comment.