• Home
  • Raw
  • Download

Lines Matching +full:cmake +full:- +full:build +full:- +full:and +full:- +full:test +full:- +full:check

3 [![Travis Build Status](https://travis-ci.org/xiph/ogg.svg?branch=master)](https://travis-ci.org/xi…
4 [![Jenkins Build Status](https://mf4.xiph.org/jenkins/job/libogg/badge/icon)](https://mf4.xiph.org/…
5 [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/xiph/ogg?branch=master…
9 the Ogg bitstream makes seeking, time stamping and error recovery
14 This source distribution includes libogg and nothing else. Other modules
15 (eg, the modules libvorbis, vorbis-tools for the Vorbis music codec,
21 - `src` The source for libogg, a BSD-license inplementation of the public domain Ogg bitstream form…
23 - `include` Library API headers
25 - `doc` Ogg specification and libogg API documents
27 - `win32` Win32 projects and build automation
32 Up to date technical documents, contact information, source code and
33 pre-built utilities may be found there.
42 and optionally (as root):
46 This will install the Ogg libraries (static and shared) into
47 /usr/local/lib, includes into /usr/local/include and API
52 A standard svn build should consist of nothing more than:
58 and as root if desired :
66 #### Cross-compiling from Linux to Windows ####
69 cross tools and even to run the test suite under Wine, the Linux/*nix
72 On Debian and Ubuntu systems, these cross compiler tools can be installed
75 sudo apt-get mingw32 mingw32-binutils mingw32-runtime wine
77 Once these tools are installed its possible to compile and test by
81 ./configure --host=i586-mingw32msvc --target=i586-mingw32msvc --build=i586-linux
83 make check
85 (Build instructions for Ogg codecs such as vorbis are similar and may
88 ## Building with CMake ##
90 Ogg supports building using [CMake](http://www.cmake.org/). CMake is a meta build system that gener…
91 …just run cmake replacing `YOUR-PROJECT-GENERATOR` with a proper generator from a list [here](http:…
93 mkdir build
94 cd build
95 cmake -G YOUR-PROJECT-GENERATOR ..
97 Note that by default cmake generates projects that will build static libraries.
98 To generate projects that will build dynamic library use `BUILD_SHARED_LIBS` option like this:
100 cmake -G YOUR-PROJECT-GENERATOR -DBUILD_SHARED_LIBS=1 ..
108 cmake -G "Visual Studio 12 2013" ..
112 Use Xcode generator. To build framework run:
114 cmake -G Xcode -DBUILD_FRAMEWORK=1 ..
120 cmake ..
128 ### Unix-like System or MinGW ###
130 If build under automake:
132 make check
134 If build under CMake:
136 make test
144 If build with configuration type "Debug", then:
146 ctest -C Debug
148 If build with configuration type "Release", then:
150 ctest -C Release
155 USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS
156 GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE
159 THE OggVorbis SOURCE CODE IS COPYRIGHT (C) 1994-2019