feat: add wren_lib static library project and refactor VS solution to separate CLI and VM sources

Add a new wren_lib static library project to the Visual Studio 2013 solution, moving all VM source files (wren_compiler.c, wren_core.c, wren_debug.c, wren_io.c, wren_utils.c, wren_value.c, wren_vm.c) from the wren executable project into the library. The wren project now only contains CLI-specific sources (main.c, io.c, vm.c) and links against wren_static_d.lib. Update .gitignore to exclude Debug/ and Release/ build output directories.
This commit is contained in:
Bryan C
2015-03-16 18:52:33 +00:00
parent 0d42d87689
commit 1c7dfe230d
6 changed files with 193 additions and 57 deletions
+5 -1
View File
@@ -30,4 +30,8 @@ ipch/
*.suo
*.user
*.userosscache
*.sln.docstates
*.sln.docstates
# Build results
[Dd]ebug/
[Rr]elease/