Andreas Wictor
Andreas Wictor
I have successfully built clox on Windows with Visual Studio 2017 and it's CMake support. You have to add your own CMakeLists.txt file but that is pretty easy. It can...
Is CMakeLists.txt in the same directory as the sources? I found this article usefull when learning about CMake in Visual Studio https://aka.ms/cmake.
> Does Clox use an extension to build source files like in C? I would think that is a non goal, after all the book is called "Crafting Interpreters".
Making a great repl is probably not a goal for the book either. But you can create your lox program in a separate file and pass the path to the...
An alternative to the xml file mentioned by @borrrden that worked for me is to use the `DynamicDependency` attribute in your code. For example I have a command called `DiffCommand`...
> @andwi Would you happen to know anything about my enum situation? 😄 Sorry no, my application has not used any enum values so I have not encountered that