summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2019-12-08Cleanup: Avoid parameter copying overheadDavid Robillard73-415/+422
2019-12-08Cleanup: Use range-based for loopsDavid Robillard2-17/+17
2019-12-08Cleanup: Use "using" instead of "typedef" where appropriateDavid Robillard57-104/+102
2019-12-08Cleanup: Use std::make_sharedDavid Robillard5-9/+10
2019-12-08Cleanup: Fix some includes and forward declarationsDavid Robillard20-14/+47
2019-12-08Cleanup: Format Python code to be mostly flake8 cleanDavid Robillard8-198/+224
2019-11-10Make test suite depend only on LV2David Robillard10-34/+25
2019-11-10Update autowafDavid Robillard1-0/+0
2019-11-10Fix passing NaN to control ports with no default valueDavid Robillard1-3/+10
2019-10-17Add missing copy constructorDavid Robillard1-0/+2
2019-10-17Remove redundant move callDavid Robillard1-1/+1
2019-10-17Fix ingenish with Python 3David Robillard2-2/+3
2019-10-17Update autowafDavid Robillard3-62/+61
2019-10-17Remove use of autowaf.defineDavid Robillard2-16/+11
2019-10-08Raise existing plugin UI windows if double-clicked againDavid Robillard1-2/+2
2019-04-21Don't build client library if libsigc++ is not availableDavid Robillard1-1/+3
2019-04-21Switch to using a submodule for autowafDavid Robillard190-41951/+25
2019-04-13Clean up symbol tableDavid Robillard8-16/+26
2019-04-13Remove glib dependency from libingenDavid Robillard1-2/+2
2019-04-13Don't depend on system-installed libingenDavid Robillard1-2/+2
2019-03-28Fix search for ingen_gui.uiDavid Robillard2-3/+2
2019-03-17Update autowaf and adapt to new APIDavid Robillard49-492/+904
2019-03-17Squashed 'waflib/' changes from 915dcb17..e7a29b6bDavid Robillard46-438/+871
e7a29b6b Upgrade to waf 2.0.15 8280f9de Add command for running executables from the build directory 8073c1ad Make make_simple_dox() safe in case of exception 70d03b82 Avoid use of global counter hacks for configuration display b7d689a4 Rewrite test framework 94deadf0 Automatically add options and move add_flags() to options context f4259ee4 Reduce system include path noise 927b6082 Automatically display configuration header c44b8f3b Set line justification from a constant in the wscript a48e26fd Automatically detect if wscript has a test hook ef66724d Save runtime variables in the environment 63bcbcd3 Clean up TestContext b1d95050 Add ExecutionContext for setting runtime environment 387c1dfa Add show_diff() and test_file_equals() utilities 29d4d293 Fix in-tree library paths 9fde01f4 Add custom configuration context 6d3612fd Add lib_path_name constant git-subtree-dir: waflib git-subtree-split: e7a29b6b9b2f842314244c23c14d8f8f560904e1
2019-03-16Improve input path handlingDavid Robillard1-12/+20
2019-03-16Use search path facilities to find modulesDavid Robillard3-47/+31
2019-03-16Properly support XDG_DATA_HOME and XDG_DATA_DIRSDavid Robillard2-16/+78
2019-03-09Clean up AtomForgeDavid Robillard7-158/+152
2019-03-09Make start_to_file() take a FilePath for type safetyDavid Robillard5-6/+8
2019-03-09Make Tee preserve interface order and act as a facade for the firstDavid Robillard1-4/+4
2019-03-09Fix misleading connect window labelDavid Robillard1-1/+1
2019-03-09Clean up includes and forward declarationsDavid Robillard248-1265/+1743
2019-03-09Remove clearlooks from style configurationDavid Robillard1-5/+0
2019-03-09Localise dependency on boost::format and improve logging APIDavid Robillard36-231/+271
2019-03-09Use smart pointers over manual memory managementDavid Robillard22-169/+132
2019-03-08Add make_shared and make_unique utilitiesDavid Robillard1-0/+14
2019-03-08Use smart pointers to manage World in programsDavid Robillard3-9/+7
2019-03-08Use smart pointers to handle FILE streamsDavid Robillard3-12/+15
2019-03-08Pass World everywhere by referenceDavid Robillard68-478/+472
2019-03-08Make parser take mandatory arguments by referenceDavid Robillard9-106/+106
2019-02-24Require LV2 1.16.0David Robillard1-1/+1
2019-01-12Squashed 'waflib/' changes from 5ea8f99f..915dcb17David Robillard1-15/+39
915dcb17 Report test time correctly 26f0a2b9 Remove redundant verbose-tests option fc35c2ce Fix MSVC CFLAGS git-subtree-dir: waflib git-subtree-split: 915dcb1778a592ef54a6b7e14fa8a6bd1ca3376c
2019-01-12Update autowafDavid Robillard1-15/+39
2019-01-09Remove debug noiseDavid Robillard1-2/+0
2019-01-09Fix SocketWriter bundle delimitersDavid Robillard2-13/+17
In particular, this fixes ingenish. The old solution here was broken by changing to a single message() function since bundle_end() was no longer virtual.
2018-11-24Squashed 'waflib/' changes from 6e726eb1..5ea8f99fDavid Robillard531-63439/+60
5ea8f99f Improve test output spacing 0e23b29f Raise exception when test suite fails to ensure non-zero exit status d6de073b Show run time of unit tests 5b655541 Add short configure option for ultra-strict flags 4687ba6d Use gtest-like test output 258903d9 Fix failure count in test group summaries da07e738 Fix verbose tests with Python 3 git-subtree-dir: waflib git-subtree-split: 5ea8f99f6e1246079c1fe6bb590c38a53aadd40d
2018-11-24Merge commit 'a7d83f19b08eb4c6f79a82fe60c2b86db13f4420'David Robillard1-25/+35
2018-09-30Update empty test bundleDavid Robillard2-5/+3
2018-09-30Fix order of test failure diffsDavid Robillard1-4/+4
2018-09-29Use nullptrDavid Robillard22-39/+46
2018-09-23Clean up property parsingDavid Robillard1-48/+30