Skip to content

Commit

Permalink
Import of the official 1.9.0 release
Browse files Browse the repository at this point in the history
Tree grabbed as is from the tarball.
  • Loading branch information
olofson committed Sep 11, 2013
1 parent 751e435 commit d30cce4
Show file tree
Hide file tree
Showing 72 changed files with 20,245 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
build
CMakeCache.txt
CMakeFiles
Makefile
Expand Down
18 changes: 18 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
cmake_minimum_required(VERSION 2.8)
project(AUDIALITY2)

set(VERSION_MAJOR 1)
set(VERSION_MINOR 9)
set(VERSION_PATCH 0)
set(PACKAGE "audiality2-${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
set(VERSION_STRING "${VERSION_MAJOR}_${VERSION_MINOR}_${VERSION_PATCH}")

add_subdirectory(src)
add_subdirectory(test)

install(DIRECTORY include/ DESTINATION include/Audiality2
FILES_MATCHING PATTERN "*.h")

configure_file(audiality2.pc.cmake ${CMAKE_SOURCE_DIR}/audiality2.pc @ONLY)
install(FILES ${CMAKE_SOURCE_DIR}/audiality2.pc
DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig/")
28 changes: 28 additions & 0 deletions COPYING
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

===========================================================================
NOTE: The demo songs provided with Audiality 2 are part of the commercial
NOTE: game Kobo II, Copyright (C) 2012 David Olofson. All rights reserved.
NOTE: You may play these songs using the Audiality test program a2test.c.
NOTE: For any other uses, please contact the author!
===========================================================================

The license below, commonly known as the zlib license, applies to the
software, except for the aforementioned demo songs:

Copyright (C) 2011-2012 David Olofson <david@olofson.net>

This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.

Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:

1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Loading

0 comments on commit d30cce4

Please sign in to comment.