How to Build Rebol 3 in MSVC

I am trying to build Rebol 3 in Microsoft Visual Studio 2013, but so far I have not been successful. I am using a Git repository for my source which has no solution. I tried to build a solution and manually import all the code files, but that doesn't work. I really don't know what I'm doing, so any help would be appreciated.

+3


source to share


1 answer


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

Once you've cloned the repository, check out the "atronix" branch (you were probably on that when you cloned it first) and initialize and update the submodule:

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

      



Open ms vs solution make/msvc/r3.sln

Edit: The old msvc branch merges into "atronix", so use that option.

+2


source







All Articles