Skip to content

Devsh-Graphics-Programming/bzip2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CMake support for bzip2

Build status

This repository implementes native CMake support for bzip2 with minor modifications to original sources. A package configuration for easy integration in own projects is also provided.

Compilation

To compile bzip2, create a build directory and run

$ cmake <build-dir>

in the build directory to generate project files using the default CMake generator.

Using bzip2 in own projects

This repository add a package configuration for bzip2 allowing to integrate bzip2 in own projects. For this purpose, the package configuration exposes an imported target named BZip2::BZip2 that other targets can link to.

To consume the bzip2 package configuration, use the usual find_package mechanism:

find_package (BZip2 1.0.6 REQUIRED)

add_executable (myapp myapp.c)
target_link_libraries (myapp PRIVATE BZip2::BZip2)

About

CMake support for bzip2

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 55.8%
  • HTML 30.1%
  • Roff 5.4%
  • XSLT 2.9%
  • Shell 1.9%
  • CMake 1.6%
  • Other 2.3%