aboutsummaryrefslogtreecommitdiff
path: root/Lanes.vcxproj (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Updated COPYRIGHT and READMEHEADmasterBenoit Germain2025-12-011-0/+4
|
* Lift restriction on functions and userdata as table keysBenoit Germain2025-09-301-0/+1
| | | | As demonstrated by the unit tests, there is no problem with using a function or a userdata as a table key, as long as they are transferable
* Use LANES_DEBUG instead of MSVC-specific _DEBUG to activate debug codeBenoit Germain2025-07-241-22/+22
|
* Use LANES_DEBUG instead of MSVC-specific _DEBUG to activate debug codeBenoit Germain2025-07-241-2/+2
|
* Added targets for Lua 5.5 in VS projects and SolutionBenoit Germain2025-07-041-0/+326
|
* More vcproj fixes for some targetsBenoit Germain2025-03-211-4/+4
|
* Adjusting MSVC files to ease unit testingBenoit Germain2025-03-211-244/+363
| | | | | * Everything assumes there is a _LuaVersions folder containing all supported Lua versions (binaries, libs and headers) alongside the Lanes.sln location * After that the solutions to build the Lua binaries themselves will appear too for reference (mainly because their output folders will be configured accordingly)
* A few vcproj tweaksBenoit Germain2025-03-201-49/+36
|
* Circumvent MSVC possible bug causing a crash in optimized buildsBenoit Germain2025-03-171-3/+0
|
* lanes/core.[so|dll] → lanes_core.[so|dll]Benoit Germain2025-03-141-70/+75
|
* More work on MakefilesBenoit Germain2025-03-131-2/+2
| | | | | | | | | | | * renamed makefiles: - Shared.mk → Shared.makefile - src/Makefile → src/Lanes.makefile - unit_tests/Makefile → unit_tests/UnitTests.makefile - deep_userdata_example/Makefile → deep_userdata_example/DUE.makefile * Add a makefile for deep_userdata_example * added a target 'unit_tests' to build them (not running them yet) * plus some minor internal improvements
* Cleanup in MSVC projectsBenoit Germain2025-03-131-51/+52
|
* Add a VisualStudio solution to build and debug LanesBenoit Germain2025-03-111-0/+1648
* configured to build Lanes, the example module deep_userdata_example, and the unit tests * relies on Lua 5.1 → 5.4, LuaJIT and MoonJIT to be built and located in a fixed directory * manual_register legacy test now uses deep_userdata_example module instead of lfs