Skip to content

Commit

Permalink
Add prefix "_64" in filename to 64 bits build
Browse files Browse the repository at this point in the history
  • Loading branch information
thennequin committed Mar 3, 2019
1 parent 1ea61a7 commit 00f865b
Showing 1 changed file with 38 additions and 18 deletions.
56 changes: 38 additions & 18 deletions scripts/genie.lua
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,15 @@ solution "UtilsCollection"

configuration "Debug"
targetsuffix "_d"
platforms "x64"
targetsuffix "_x64_d"
platforms{}
flags { "Symbols" }

configuration "Release"
platforms "x64"
targetsuffix "_x64"
platforms{}
flags { "Optimize" }


Expand All @@ -60,9 +66,14 @@ solution "UtilsCollection"

configuration "Debug"
targetsuffix "_d"
platforms "x64"
targetsuffix "_x64_d"
flags { "Symbols" }

configuration "Release"
platforms "x64"
targetsuffix "_x64"
platforms{}
flags { "Optimize" }

project "BooleanExpression"
Expand All @@ -79,29 +90,38 @@ solution "UtilsCollection"

configuration "Debug"
targetsuffix "_d"
platforms "x64"
targetsuffix "_x64_d"
flags { "Symbols" }

configuration "Release"
platforms "x64"
targetsuffix "_x64"
platforms{}
flags { "Optimize" }


project "StringUtils"
uuid "618ee57a-e754-46cf-9f9b-7923e531d970"
kind "ConsoleApp"
targetdir "../.output/"

files {
"../StringUtils/**.cpp",
"../StringUtils/**.h"
}

platforms{}

configuration "Debug"
targetsuffix "_d"
flags { "Symbols" }

configuration "Release"
flags { "Optimize" }

uuid "618ee57a-e754-46cf-9f9b-7923e531d970"
kind "StaticLib"
targetdir "../.output/"

files {
"../StringUtils/**.cpp",
"../StringUtils/**.h"
}

platforms{}

configuration "Debug"
targetsuffix "_d"
platforms "x64"
targetsuffix "_x64_d"
flags { "Symbols" }

configuration "Release"
platforms "x64"
targetsuffix "_x64"
platforms{}
flags { "Optimize" }

0 comments on commit 00f865b

Please sign in to comment.