Browse Source

Try specifying 32 bit

Josh Engebretson 10 years ago
parent
commit
1ad8f83493
1 changed files with 3 additions and 1 deletions
  1. 3 1
      Rakefile

+ 3 - 1
Rakefile

@@ -60,7 +60,9 @@ namespace :build  do
     Dir.chdir(CMAKE_WINDOWS_BUILD_FOLDER) do
     Dir.chdir(CMAKE_WINDOWS_BUILD_FOLDER) do
 
 
       sh "cmake ../../ -G \"Visual Studio 14 2015\""
       sh "cmake ../../ -G \"Visual Studio 14 2015\""
-      sh "msbuild /m Atomic.sln /p:Configuration=Release"
+
+      # specify 32 bit
+      sh "msbuild /m Atomic.sln /property:Configuration=Release /p:PlatformTarget=x86"
 
 
     end
     end