summaryrefslogtreecommitdiffstats
path: root/wscript
AgeCommit message (Collapse)AuthorFilesLines
2020-11-23Fix header installationDavid Robillard1-2/+1
2020-11-12Suppress MSVC warningsDavid Robillard1-0/+3
2020-11-12Suppress warnings in release buildDavid Robillard1-0/+2
2020-11-12Remove checks for standard headersDavid Robillard1-3/+0
2020-11-12Use separate clang-tidy configurations for headers and testsDavid Robillard1-1/+1
2020-11-12Move includes to a conventional include directoryDavid Robillard1-2/+5
2020-07-18Add more powerful lint targetDavid Robillard1-28/+53
2020-07-18Fix flake8 warningsDavid Robillard1-18/+22
2020-07-17Be explicit about warningsDavid Robillard1-1/+21
2019-11-10Clean up test outputDavid Robillard1-2/+3
2019-04-21Fix pkg-config file for versioned installationDavid Robillard1-6/+6
2019-04-21Remove unused includes directoryDavid Robillard1-1/+1
2019-04-21Bump major version and version include directoryDavid Robillard1-23/+7
2019-03-17Update autowaf and adapt to new APIDavid Robillard1-10/+3
2018-09-17Fix Windows buildDavid Robillard1-19/+24
2018-09-16Lint with clang-tidyDavid Robillard1-1/+29
2018-09-16Fix clang buildDavid Robillard1-2/+1
2018-09-16Use std::thread in ringbuffer testDavid Robillard1-0/+1
2018-09-16Clean up wscriptDavid Robillard1-6/+6
2018-01-21Remove URI classDavid Robillard1-2/+1
2018-01-16Explicitly set language versionDavid Robillard1-0/+1
2017-12-29Upgrade to waf 2.0.3David Robillard1-3/+3
2017-12-16Remove queuesDavid Robillard1-1/+0
2017-12-16Update wafDavid Robillard1-1/+0
2017-02-27Use std::chrono::duration in Semaphore APIDavid Robillard1-1/+1
2017-02-27Remove use of Options.platformDavid Robillard1-3/+3
This is removed in waf 1.9 and isn't correct for cross-compiling anyway.
2017-02-27Update waf and fix C++11 flagsDavid Robillard1-3/+1
2017-02-12Fix link warning on clangDavid Robillard1-1/+2
2017-02-12Add managed_ptr for automatic real-time safe garbage collectionDavid Robillard1-1/+1
2016-09-05Fix thread compilation on some systemsDavid Robillard1-1/+4
2016-09-05Add project tag to release postsDavid Robillard1-1/+1
2016-08-17Add target for generating release announcementsDavid Robillard1-0/+11
2016-07-25Support test coverage with LLVMDavid Robillard1-17/+10
2016-07-09Add --no-coverage configure optionDavid Robillard1-1/+3
2015-03-19Bump Raul version.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@5644 a436a847-0d15-0410-975c-d299462d15a1
2015-01-09Don't use pointless autowaf.check_header wrapper.David Robillard1-2/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@5506 a436a847-0d15-0410-975c-d299462d15a1
2014-12-18Fix compilation on OSX.David Robillard1-1/+3
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@5501 a436a847-0d15-0410-975c-d299462d15a1
2014-12-18Upgrade to waf 1.8.5.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@5496 a436a847-0d15-0410-975c-d299462d15a1
2013-12-25Load waf modules before everything else so CFLAGS and friends are correct ↵David Robillard1-1/+1
(oops). git-svn-id: http://svn.drobilla.net/lad/trunk/raul@5204 a436a847-0d15-0410-975c-d299462d15a1
2013-12-25Tidy up configuration output.David Robillard1-3/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@5203 a436a847-0d15-0410-975c-d299462d15a1
2013-06-08Better test coverage.David Robillard1-0/+3
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@5125 a436a847-0d15-0410-975c-d299462d15a1
2013-02-23Move Socket class to Raul.David Robillard1-0/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@5079 a436a847-0d15-0410-975c-d299462d15a1
2013-02-23Remove Raul::fmt wrapper, the last vestige of boost dependency for Raul.David Robillard1-2/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@5077 a436a847-0d15-0410-975c-d299462d15a1
2013-02-23Move Atom implementation out of Raul so it can depend on LV2.David Robillard1-1/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@5076 a436a847-0d15-0410-975c-d299462d15a1
2013-02-03Check for c++0x compiler flag before adding to environment.David Robillard1-0/+3
This should fix the partial group build on systems which don't support c++0x. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@5036 a436a847-0d15-0410-975c-d299462d15a1
2013-01-20Use -std=c++0x instead of -std=c++11 for older compilers.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@5001 a436a847-0d15-0410-975c-d299462d15a1
2013-01-12Remove Raul::SharedPtr and switch to std::shared_ptr.David Robillard1-11/+2
Use project local short type aliases for shared_ptr and friends. Move Raul::Disposable and Raul::Manageable into Raul::Maid. Use sets to store machina nodes and edges to avoid O(n) searches. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4939 a436a847-0d15-0410-975c-d299462d15a1
2013-01-11Use C++11 atomics.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4916 a436a847-0d15-0410-975c-d299462d15a1
2012-11-22Tidy.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4851 a436a847-0d15-0410-975c-d299462d15a1
2012-11-21Remove remaining library code, Raul is now header only.David Robillard1-38/+7
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4837 a436a847-0d15-0410-975c-d299462d15a1