Where can I get the source code of Bircoin or ANY other cryptocurrency compilable in Visual Studio?

2

I really want to study the source in detail. I'm using windows so can't compile the source on Github. I found one here : http://bitcoinqtmsvc2012.codeplex.com/, but couldn't get it to compile even after downloadinng and installing all dependencies required.

Can anyone please refer me to a compilable version of bitcoin in visual studio format?

magicaltx

Posted 2014-06-06T12:23:29.480

Reputation: 21

"Can compile on Windows" != "can compile in Visual Studio".Tim S. 2014-06-06T17:14:53.057

Answers

2

The source to bitcoinqt is windows compatible, if it wasnt then there wouldn't be a Windows port of it. I would assume you need to install Cygwin to get the appropriate development tools such as gcc. Since you dont know about Cygwin, I can only assume you dont know how to compile software on *NIX. Change the current directory to that of bitcoinqt, and then type "./configure" and then "make". That usually works, you might need to specify options to configure, which you can find out with "./configure --help".

If you can't get a project to compile then you really should be asking Stack Overflow about the compilation errors instead of posting here. And just saying it doesn't compile doesnt provide anyone with enough information to tell you why it isnt compiling.

Matt

Posted 2014-06-06T12:23:29.480

Reputation: 409