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
path: root/tests
AgeCommit message (Collapse)Author
2022-02-27Trying to align output better with vanilla VS output4.4-wds-877Oliver Schneider
Added tests for some VS versions that weren't currently tested --HG-- branch : WDS-build
2022-02-21Attempting to solve a glitch with VS version selectorOliver Schneider
It appears the true string in modern versions is "Visual Studio Version <version>" not just "Visual Studio <version>". Still need to figure out which of the VS versions changed it. Fixed up all tests. --HG-- branch : WDS-build
2022-01-23Merged with upstream (the file mode changes)Oliver Schneider
--HG-- branch : WDS-build
2022-01-23Arranging for VS2022 supportOliver Schneider
--HG-- branch : WDS-build
2022-01-22Just changing file modesOliver Schneider
- This is mostly a benign commit, except on Unix - Removed the x bit from a number of files which had it set on account of having been created/modified on Windows, I suppose. --HG-- branch : WDS-build
2019-10-15Arranging for VS2019 supportOliver Schneider
--HG-- branch : vs2019_support
2017-03-16Adding support for Visual Studio 2017 projects and solutions.Oliver Schneider
Does not add the VisualStudioVersion and MinimumVisualStudioVersion in solution files, but VS2017 opens those fine regardless and picks them up first even when VS2010, 2012, 2013 and VS2017 are installed as well. Added corresponding tests and verified that all is as expected. --HG-- branch : vs2017_support
2015-11-15Merge with vs2015_supportOliver Schneider
--HG-- branch : WDS-build
2015-11-15Adding support for Visual Studio 2015 projects and solutions.Oliver Schneider
Does not add the VisualStudioVersion and MinimumVisualStudioVersion in solution files, but VS2015 opens those fine regardless and picks them up first even when VS2010, 2012 and 2013 are installed as well. Added corresponding tests and verified that all is as expected. --HG-- branch : vs2015_support
2015-11-09Merge with upstreamOliver Schneider
--HG-- branch : WDS-build
2014-12-08Add missing quotes around PCH compile flags (h/t Daniel Gibson)Jason Perkins
See comment at https://bitbucket.org/premake/premake-4.x/commits/7e583c84a367985227e0865bedfda6315416e288#comment-1468822
2014-11-19Remove $(ARCH) variable from makefiles; causing issues on LinuxJason Perkins
2014-09-16Backport native path functions from Premake-devJason Perkins
2014-04-24Merged in dcourtois/premake-stable/issue_60 (pull request #44)Jason Perkins
added post and pre build events support for C# projects
2014-04-24Fix issue #20 - can now find files with a dot prefix; directories are still ↵Jason Perkins
ignored
2014-04-22added post and pre build events support for C# projectsDamien Courtois
--HG-- branch : issue_60
2014-04-03Merged in dcourtois/premake-stable/test_vs_macros (pull request #43)Jason Perkins
added a test to ensure VS macros are correctly handled in include paths.
2014-04-03Issue #236: Fix failing PCH unit testsJason Perkins
2014-04-03added a test to ensure VS macros are correctly handled in include paths.Damien Courtois
--HG-- branch : test_vs_macros
2013-11-12Fix virtual path building for patterns like "filename.*"Jason Perkins
2013-11-12Fix CodeLite file testsJason Perkins
2013-10-03Pass same flags to PCH compile as C/C++ source codeJason Perkins
2013-09-11Merged in lzprgmr/premake-stable (pull request #17)Jason Perkins
Make table.isempty work with table which has a key as false
2013-08-20Find PCH on include dirs even if project has a location setJason Perkins
2013-08-17Initial support for Visual Studio 2013 (Igor Karatayev)Jason Perkins
2013-08-08Swapped $(LIBS) and $(ALL_LDFLAGS) in makefile linking step (Ben Henning)Jason Perkins
See http://sourceforge.net/p/premake/bugs/279/
2013-07-27Make table.isempty work with table which has a key as falseBaiyan Huang
2013-07-12Improved handling of precompiled headers across toolsetsJason Perkins
2013-07-03Stop stripping path from PCH headers in Visual Studio; first step in ↵Jason Perkins
standardizing handling across tools
2013-05-15Fixed bug #176: Target prefix breaks GCC linkingJason Perkins
2013-05-02Fix bug 171: ImpLib used incorrectly in dependency pathsJason Perkins
2013-04-26Add support for Visual Studio 2012 (Oliver Schneider)Jason Perkins
2013-03-10Implemented flags ATL and StaticATL to complement MFC and StaticRuntime ↵Oliver Schneider
flags ... perhaps an addition could be to make assumptions for ATL based on StaticRuntime as well, but in general these are distinct configuration settings --HG-- branch : atl-support
2013-02-21Fix .def file support for VS2010 (Riccardo Ghetta)Jason Perkins
2013-01-29Fix linking to external libraries outside of project folderJason Perkins
2013-01-24Clean up GMake link tests in preparation for a bug fixJason Perkins
2013-01-23Merged in bitshifter/premake-stable-env-flags-makefile-fix (pull request #4)Jason Perkins
Use ALL_CPPFLAGS, ALL_CFLAGS, ALL_CXXFLAGS and ALL_LDFLAGS internally so CFLAGS etc can be overridden on the command line.
2013-01-11Bug 268: Target extension not set properly for Visual Studio 2010Jason Perkins
2012-12-20Use ALL_CPPFLAGS, ALL_CFLAGS, ALL_CXXFLAGS and ALL_LDFLAGS internally so ↵Cameron Hart
CFLAGS etc can be overridden on the command line.
2012-12-14Port vpath tests from premake-devJason Perkins
2012-10-19Patch 3462994: Make flag values case-insensitiveJason Perkins
2012-10-05Patch 3367642: Add support for targetextension property to XcodeJason Perkins
2012-09-28Patch 3485071: Fixed _PREMAKE_COMMAND fallback when premake4 is not in PATH ↵Jason Perkins
(Konstantin Tokarev)
2012-09-18Fixed handling of exact path matches in vpath buildingJason Perkins
2012-09-14Pull 1: Fixed path to Info.plist in Xcode projects (Adrien Anselme)Jason Perkins
2012-09-06Patch 3476176: Remove conditionals from makefile compiler assignments ↵Jason Perkins
(Konstantin Tokarev)
2012-09-06Patch 3476176: Fix dependencies of precompiled header in makefileJason Perkins
2012-04-22Patch 3353875: Allow running test script from other directories than "tests"Jason Perkins
2012-04-18adds option generate_user to control .user filesrghetta@larix.it
--HG-- branch : WDS-build
2012-03-19Patch 3505903: Fix VC2010 project reference paths (Pavel Czerný)Jason Perkins