feat: add premake and VS2019 project files for wren-cli with libuv and wren deps

Add initial build system configuration for the wren-cli command-line tool,
including a premake5.lua script defining workspace, project, and dependency
paths for libuv and wren, plus generated Visual Studio 2019 solution and
project files with Debug/Release and 32bit/64bit platform support.
This commit is contained in:
underscorediscovery
2020-02-12 04:18:24 +00:00
parent 2508c8e6f4
commit e0119fdbac
5 changed files with 809 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 16
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wren_cli", "wren_cli.vcxproj", "{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|64bit = Debug|64bit
Release|64bit = Release|64bit
EndGlobalSection
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|32bit = Debug|32bit
Release|32bit = Release|32bit
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Debug|32bit.ActiveCfg = Debug 32bit|Win32
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Debug|32bit.Build.0 = Debug 32bit|Win32
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Debug|64bit.ActiveCfg = Debug 64bit|x64
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Debug|64bit.Build.0 = Debug 64bit|x64
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Release|32bit.ActiveCfg = Release 32bit|Win32
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Release|32bit.Build.0 = Release 32bit|Win32
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Release|64bit.ActiveCfg = Release 64bit|x64
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Release|64bit.Build.0 = Release 64bit|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal