Any way to compile in windows?

Asked by DeadVirus

Hello,

Is there any way to compile version 2.2.0 in Windows?

Question information

Language:
English Edit question
Status:
Solved
For:
ARToolKitPlus Edit question
Assignee:
No assignee Edit question
Solved by:
Pavel Rojtberg
Solved:
Last query:
Last reply:
Revision history for this message
Pavel Rojtberg (rojtberg) said :
#1

no - you have to download the version from trunk. There you will find a CMake Build file.

Revision history for this message
DeadVirus (amfcosta13) said :
#2

But will I be able to compile it in windows then? Or it only compiles in linux?

Revision history for this message
Best Pavel Rojtberg (rojtberg) said :
#3

yes, it will compile on windows then. You can use CMake to generate a Visual Studio Project.

Revision history for this message
DeadVirus (amfcosta13) said :
#4

Thanks Pavel Rojtberg, that solved my question.

Revision history for this message
Dayangac (enesdayangac) said :
#5

I am using CMake 2.8.5 to compile it in windows 7 ( 64 bits, but the other programs are 32 bits).

I want to create a project for Visual Studio 9 2008 or Visual Studio 10

While configuring, the error:
  CMake Error at CMakeLists.txt:35 (install):
     install Library TARGETS given no DESTINATION!

As a solution, I changed "install(TARGETS ARToolKitPlus LIBRARY DESTINATION lib)" to

"install(TARGETS ARToolKitPlus LIBRARY DESTINATION lib
                      ARCHIVE DESTINATION lib
                      RUNTIME DESTINATION bin )"

Configuring done.

In the build folder, there is nothing coming.

How can I generate a visual studio project? Where is my mistake?