summaryrefslogtreecommitdiffstats
path: root/solenv
Commit message (Collapse)AuthorAgeFilesLines
* add function for converting path to URLDavid Tardon2012-04-085-7/+24
|
* rename gb_CppunitTest_set_argumentsDavid Tardon2012-04-081-3/+11
| | | | | It does not actually _set_ the command line arguments, but rather _adds_ to them. IMHO the new name reflects this fact better.
* simplify use of configuration from unit testsDavid Tardon2012-04-081-0/+31
|
* always use --protector for UNO testsDavid Tardon2012-04-081-1/+2
|
* drop uses_ureDavid Tardon2012-04-081-3/+3
|
* we do not need to differentiate between type and service rdbs nowDavid Tardon2012-04-081-4/+12
|
* let use_api handle the use of type rdbs at runtimeDavid Tardon2012-04-081-5/+14
| | | | | Or is there any use case where we would need to use UNO API headers, but not require the appropriate type database at runtime?
* more cleanupDavid Tardon2012-04-081-7/+4
|
* fix generation of test argumentsDavid Tardon2012-04-081-9/+6
| | | | | udkapi.rdb, resp. xml/services.rdb were not added to UNO_TYPES, resp. UNO_SERVICES env. var. in all cases.
* gbuild: "use" vs. "add"David Tardon2012-04-084-20/+74
|
* LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl2012-04-087-6/+18
|
* StaticLibrary.mk: linking against dynamic libs considered sillyMichael Stahl2012-04-081-4/+0
|
* gbuild: "use" vs. "add":Michael Stahl2012-04-0813-59/+308
| | | | | | | | | Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target)
* make linkoo not create backups by defaultLuboš Luňák2012-04-071-5/+12
| | | | | The 'linked' files are not used by anything, and they just waste space. If somebody wants them for debugging or whatever reason, use --backup.
* no trailing \ on last line, so that endif is taken as a directiveLuboš Luňák2012-04-071-1/+1
|
* enable -fno-enforce-eh-specs only for non-dbgutil buildsLuboš Luňák2012-04-066-1/+14
| | | | | | | | | | The code uses exception specifications, so it doesn't make much sense to have them, but disable them using a gcc option. MSVC ignores them completely, so this would leave only clang as the only compiler to enforce them. Either the majority compiler needs to enforce it at least in dbgutil builds (in product builds the option can be seen as a kind of NDEBUG), or alternatively the exception specifications should be removed.
* fix build on windows (i hope)David Tardon2012-04-061-1/+1
|
* merge feature/gbuild_componentsDavid Tardon2012-04-069-166/+592
|\
| * add_internal_*_api for Executable tooDavid Tardon2012-04-011-0/+3
| |
| * merge origin/masterDavid Tardon2012-04-01177-7874/+2243
| |\
| * | rename targets to match LinkTarget's functionsDavid Tardon2012-03-244-21/+21
| | |
| * | use correct rdb root dirsDavid Tardon2012-03-244-15/+36
| | |
| * | use the default deliver ruleDavid Tardon2012-03-242-10/+0
| | |
| * | update copyright dateDavid Tardon2012-03-241-1/+1
| | |
| * | allow to express transitive dep for rdbsDavid Tardon2012-03-181-0/+20
| | |
| * | fix number of argumentsDavid Tardon2012-03-181-2/+2
| | |
| * | add InternalUnoApi classDavid Tardon2012-03-126-8/+164
| | |
| * | refactor UnoApi classDavid Tardon2012-03-116-257/+401
| | |
| * | add add_deliverable callDavid Tardon2012-01-291-0/+3
| | |
| * | simplify UnoApiTarget's targetsDavid Tardon2012-01-292-13/+7
| | |
| * | split rdb generation out of UnoApiTargetDavid Tardon2012-01-294-21/+113
| | |
* | | make add_custom_headers betterMatúš Kukan2012-04-061-1/+6
| | |
* | | gbuild: add customtarget dependencies for java stuffMatúš Kukan2012-04-063-6/+30
| | |
* | | gbuild: fix cleaning generated object filesMatúš Kukan2012-04-041-2/+2
| | |
* | | gbuild: do not let generated source files depend on headers (ver. 2)Matúš Kukan2012-04-041-2/+8
| | |
* | | LinkTarget.mk: fix stupid typo in 0683821dMichael Stahl2012-04-031-1/+1
| | |
* | | s/pathes/paths/Tor Lillqvist2012-04-0314-56/+56
| | |
* | | gbuild: ObjC command invocation more consistentMichael Stahl2012-04-032-6/+6
| | |
* | | LinkTarget.mk: only call gb_Object__command_dep if dep file doesn't existMichael Stahl2012-04-031-1/+2
| | | | | | | | | | | | (infinite loop regression from a4e2453b42b54ba904c1ee8ad07e26f1e6d939e5)
* | | call the right function :blush:David Tardon2012-04-021-4/+4
| | |
* | | always pass --headless to cppunitsLuboš Luňák2012-04-021-0/+1
| | | | | | | | | | | | | | | | | | They should not need any actual UI anyway, and most of them already pass the option manually. http://lists.freedesktop.org/archives/libreoffice/2012-March/029109.html
* | | add pretty printers for boostDavid Tardon2012-04-0111-0/+809
| |/ |/|
* | Revert "gbuild: do not let generated source files depend on headers"Matúš Kukan2012-03-311-2/+2
| | | | | | | | | | There is a reason for that dependency. I will have to come up with something better later.
* | gbuild: do not let generated source files depend on headersMatúš Kukan2012-03-311-2/+2
| |
* | gbuild: add gb_LinkTarget_add_custom_headersMatúš Kukan2012-03-314-0/+14
| | | | | | | | to be used for generated headers which are not delivered to solver.
* | gbuild: add comments, fix order to be more readableMatúš Kukan2012-03-311-3/+5
| |
* | gbuild: gb_Object__command_dep should be used here and a little cleanupMatúš Kukan2012-03-311-31/+5
| |
* | filter-showIncludes.pl: Attempt to prevent creating incomplete .d files.Jan Holesovsky2012-03-301-6/+13
| |
* | Only basename in component uris in DISABLE_DYNLOADING case here, tooTor Lillqvist2012-03-291-2/+8
| |
* | No need for COMPONENTPREFIX when we link components staticallyTor Lillqvist2012-03-291-1/+6
| |