How to build Rebol 3 in MSVC

244 Views Asked by At

I am trying to get Rebol 3 to compile in Microsoft Visual Studio 2013, but so far I have been unsuccessful. I am using a Git repo for my source which does not come with a solution. I have tried creating a solution and manually importing all of the code files, but that does not work. I really do not know what I am doing, so any help would be appreciated.

1

There are 1 best solutions below

5
On BEST ANSWER

Please clone my repository: https://github.com/zsx/r3

Once you have cloned the repository, checkout the "atronix" branch (you're probably on it when you first cloned it), and initialize & update the submodule:

git clone https://github.com/zsx/r3.git
cd r3
git submodule init
git submodule update

Open the ms vs solution file make/msvc/r3.sln

Edit: The old branch "msvc" is merged to "atronix", so use this one instead.