Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-08-22Arrrr didn't test that last one before committing. I hang my head in shame.liamDevine
2011-08-22Oops left a couple of variables which were used to find the error. See last ↵liamDevine
commit for info.
2011-08-22The function premake.action.set (which I only see used in xcode3 tests) has ↵liamDevine
a secret, it not only sets the action yet can also set the global _OS. Currently when the function is used in a test suite it should really be reset in a teardown. To make this transparent I have added the caching of the _OS value set in C code in testfx and it is reset in 'test_setup' with the other environment resets. I had a quick look at the commits and can not see how or when this first caused a problem yet findlib was failing on windows as previous premake.action.set('xcode3') had been made and therefore the library it was looking for was 'm'. io.eol is another potential setting which leaves a dirty environment for tests.
2011-08-19Added virtual path support for CodeBlocksJason Perkins
2011-08-16Fixed Xcode3 bug with sources in a subdirectory and grouped in virtual path4.4-beta3Jason Perkins
2011-08-16Added virtual path support to Xcode3Jason Perkins
2011-08-10Added vpath support to VC200x and CodeliteJason Perkins
2011-07-20Flipped vpaths syntax, now ['group']={'pattern(s)'...}Jason Perkins
2011-07-13Removed a bunch of deprecated VC2010 codeJason Perkins
2011-07-01Implemented vpaths for VS2010Jason Perkins
2011-05-27Pulling stable change into dev.Liam Devine
2011-05-27Incorrect relative paths for gmake sibling static librariesLiam Devine
2011-05-19More cleanup; preparing the virtual path stuffJason Perkins
2011-05-13Prepped CodeBlocks for new file configsJason Perkins
2011-05-13Ported CodeLite to treesJason Perkins
2011-05-10Tweaks and tests for VS2010 file handlingJason Perkins
2011-05-07merge with stableLiam Devine
2011-05-07Fixed bug 3297634 - UnitTest++ folder breaks Xcode 3Liam Devine
Xcode itself only quotes when it needs to yet it is fine to always quote the string.
2011-05-01Applied patch which sets the target machine in visual studioliamDevine
2011-05-01set the platform in vs10 static libsdev@Rose-PC.cable.virginmedia.net
2011-05-01removing dead codeLiam Devine
2011-05-01corrected teardown function name in testing_make_linking.luaLiam Devine
stopped 'runall' from running 'setup' and 'teardown' as tests which also stops the inflated test count that I noticed. Added writing of runtime to io for test suites. Added prj = premake.solution.getproject(sln, 1) to vs10 tests and removed the managed flag hack.
2011-04-30ignore entry point in Manged C++liamDevine
2011-04-30removing dead code and also drawing attention to flags on projects when unit ↵liamDevine
testing
2011-04-30Adding Managed C++ support for vs10liamDevine
2011-04-30merge with stableliamDevine
2011-04-29Fixes Bug 3294459: vs10 x86_64 using incorrect debug format for minimal rebuilddev@Rose-PC.cable.virginmedia.net
there is not an option for setting /Z7 OldStyle so OldStyle was removed /ZI is not compatible with /clr or x64_64 minimal Rebuild requires /Zi in x86_64
2011-04-25[#1657833] Set working directory an IDE starts/debugs the program inJason Perkins
2011-04-11Merged changes from stableJason Perkins
2011-03-29gmake correctly links again to SharedLibs and StaticLibs sibling ↵Liam Devine
dependencies; yet correctly does not link to a non linkable sibling.
2011-03-29Commenting out latest changes so that stable is not broken. The test is left ↵Liam Devine
in and will fail while I look at the problem with gmake.
2011-03-26sln was in global and not reset to nil in teardownLiam Devine
2011-03-26* Patch 3043933 gmake incorrectly links using -l when a solution contains a ↵Liam Devine
.so and .a of the same name and the static lib is wanted (Jonathan Derque)
2011-03-25Fixed failed mergeJason Perkins
2011-03-24Merged with premake-stableJason Perkins
2011-03-233157645: Respects full path for xcode frameworksLiam Devine
2011-03-14pdb file was being written to the 'Link' section when it needed to be in ↵liamDevine
'ClCompile'. Reported by hodsondd closes bug report: https://sourceforge.net/tracker/?func=detail&aid=3163703&group_id=71616&atid=531878
2011-03-11Xcode4 workspace relative location paths and workspace generationLiam Devine
2011-03-11Xcode4 workspace initialLiam Devine
2011-02-16[#3100379] C# support for Visual Studio 2010Jason Perkins
2011-02-09Ported VS2005 *.csproj to treesJason Perkins
2011-02-08Ported VS2002 *.csproj from walksources to treesJason Perkins
2011-02-04Moved io.capture to test framework; removed from test suitesJason Perkins
2011-02-02Cleaned up and standardized namespaces in vstudio codeJason Perkins
2011-01-22Port VS200x from walksources() to treesJason Perkins
2011-01-02Merged with stableJason Perkins
2010-12-30Removes the setting of WholeProgramOptimization for vs10 projects as per the ↵liamDevine
msdn docs.
2010-12-28Merge with stableJason Perkins
2010-12-10Sets ONLY_ACTIVE_ARCH = YES in Xcode debug builds to mirror Xcode created ↵Liam Devine
projects
2010-12-10adds GCC_SYMBOLS_PRIVATE_EXTERN = NO; which should be the default for ↵Liam Devine
builds. This fixes a Release build yet not Debug as Xcode itself is broken. Bug 2920784 and Feature 3118000