1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
|
-- wxWidgets configuration file for premake5
--
-- Based on the script for premake4 created by
-- laurent.humbertclaude@gmail.com and v.krishnakumar@gmail.com
-- Optional environment variable pointing to the root directory of wxWidgets installation
newoption {
trigger = "wx_ver",
value = "3.1",
description = "Version of the wxWidgets build to be used"
}
-- Optional environment variable pointing to the root directory of wxWidgets installation
newoption {
trigger = "wx_env",
value = "WXWIN",
description = "Environment variable for the root of the wxWidgets build to be used"
}
-- Optional root directory of wxWidgets installation
newoption {
trigger = "wx_root",
value = "PATH",
description = "Path to wxWidgets root directory, by default, environment variable WXWIN will be used or wx-config found in path on POSIX"
}
-- Target directory for the build files generated by premake5
newoption {
trigger = "builddir",
value = "build",
description = "Directory for the generated build files"
}
if not _OPTIONS["wx_ver"] then
_OPTIONS["wx_ver"] = "3.1"
end
if not _OPTIONS["wx_env"] then
_OPTIONS["wx_env"] = "WXWIN"
end
-- Determine version of Visual Studio action
vc_version = "";
if _ACTION == "vs2003" then
vc_version = 7
elseif _ACTION == "vs2005" then
vc_version = 8
elseif _ACTION == "vs2008" then
vc_version = 9
elseif _ACTION == "vs2010" then
vc_version = 10
elseif _ACTION == "vs2012" then
vc_version = 11
elseif _ACTION == "vs2013" then
vc_version = 12
elseif _ACTION == "vs2015" then
vc_version = 14
end
is_msvc = false
vc_with_ver = ""
if ( vc_version ~= "" ) then
is_msvc = true
vc_with_ver = "vc"..vc_version
end
-- The wx_config the parameters are.
-- Root : path to wx root folder. Can be left empty if WXWIN is defined
-- or if wx-config is accessible.
-- Debug : "yes" use debug version of wxwidgets. Default to "no"
-- Version : one of '2.4', '2.5', '2.6', '2.7', '2.8', '2.9'. Default to '3.0'
-- Static : indicates how wx is to be linked. Values are
-- either "yes" for static linking or "no" for shared linking, Default to "no"
-- Unicode : use "yes" for unicode or "no" for ansi version.
-- ansi version only available up to 2.8
-- Default to "yes"
-- Universal : use universal configuration. Default to "no"
-- Libs : a list of wx libraries that you want to link with.
-- eg: "aui,media,html"
-- Default to "richtext,aui,xrc,qa,html,adv,core,xml,net"; base is implicit
-- WindowsCompiler : compiler used to compile windows libraries ( "vc" or "gcc" )
function wx_config(options)
local wrongParam = false
local allowedWxOptions = {"Root", "Debug", "Host", "Version", "Static", "Unicode", "Universal", "Libs", "WindowsCompiler" }
for option in pairs(options) do
if not table.contains(allowedWxOptions, option) then
print ("unrecognized option '"..option.. "'")
wrongParam = true
end
end
if wrongParam then print("valid options are : '" .. table.concat(allowedWxOptions, "', '").."'") end
wx_config_Private( options.Root or "",
options.Debug or "",
options.Host or "",
options.Version or "3.0",
options.Static or "",
options.Unicode or "yes",
options.Universal or "",
options.Libs or "richtext,aui,xrc,qa,html,adv,core,xml,net", -- base is implicit, std not valid
options.WindowsCompiler or "vc"
)
end
function wx_config_Private(wxRoot, wxDebug, wxHost, wxVersion, wxStatic, wxUnicode, wxUniversal, wxLibs, wxWindowsCompiler)
-- some options are not allowed for newer version of wxWidgets
if wxVersion > "2.8" then -- alphabetical comparison may fail...
-- wxDebug = "" -- 2.9 still make debug libraries
wxUnicode = "yes"
end
--wx_root=PATH override wxRoot parameter
if _OPTIONS and _OPTIONS["wx_root"] then
print ("seen option '--wx_root=" .. _OPTIONS["wx_root"] .. "' overriding default root = '" .. wxRoot .. "'")
wxRoot = _OPTIONS["wx_root"]
end
-- the environment variable WXWIN override both wxRoot parameter and --wx_root option
if os.getenv(_OPTIONS["wx_env"]) then wxRoot = "$(".._OPTIONS["wx_env"]..")" end
if wxUnicode == "yes" then defines { "_UNICODE" } end
if wxDebug == "yes" then defines { "__WXDEBUG__" }
elseif wxDebug == "no" then flags { "Optimize" } end
if wxStatic == "yes" then
-- flags { "StaticRuntime" }
else
defines { "WXUSINGDLL" }
end
-- function to compensate lack of wx-config program on windows
-- but wait, look at http://sites.google.com/site/wxconfig/ for one !
function wx_config_for_windows(wxWindowsCompiler)
local wxBuildType = "" -- buildtype is one of "", "u", "d" or "ud"
local wxDebugSuffix = "" -- debug buildsuffix is for support libraries only
if wxUnicode ~= "" then wxBuildType = wxBuildType .. "u" end
if wxDebug == "yes" then
wxBuildType = wxBuildType .. "d"
wxDebugSuffix = "d"
end
local wxLibPath = path.join(wxRoot, "lib")
wxLibPath = path.join(wxLibPath, wxWindowsCompiler .. "_" .. iif(wxStatic == 'yes', 'lib', 'dll'))
-- common defines
defines{ "__WXMSW__" }
-- common include path
includedirs {
path.join(wxLibPath, "msw" .. wxBuildType), -- something like "%WXWIN%\lib\vc_lib\mswud" to find "wx/setup.h"
path.join(wxRoot, "include")
}
-- common library path
libdirs { wxLibPath }
-- add the libs
libVersion = string.gsub(wxVersion, '%.', '') -- remove dot from version
links { "wxbase"..libVersion..wxBuildType } -- base lib
for i, lib in ipairs(string.explode(wxLibs, ",")) do
local libPrefix = 'wxmsw'
if lib == "xml" or lib == "net" or lib == "odbc" then
libPrefix = 'wxbase'
end
links { libPrefix..libVersion..wxBuildType..'_'..lib}
end
-- link with support libraries
for i, lib in ipairs({"wxjpeg", "wxpng", "wxzlib", "wxtiff", "wxexpat"}) do
links { lib..wxDebugSuffix }
end
links { "wxregex" .. wxBuildType }
links { "comctl32", "rpcrt4", "shell32", "gdi32", "kernel32", "user32", "comdlg32", "ole32", "oleaut32", "advapi32" }
end
-- use wx-config to figure out build parameters
function wx_config_for_posix()
local configCmd = "wx-config" -- this is the wx-config command ligne
if wxRoot ~= "" then configCmd = path.join(wxRoot, "bin/wx-config") end
local function checkYesNo(value, option)
if value == "" then return "" end
if value == "yes" or value == "no" then return " --"..option.."="..value end
error("wx"..option..' can only be "yes", "no" or empty' )
end
configCmd = configCmd .. checkYesNo(wxDebug, "debug")
configCmd = configCmd .. checkYesNo(wxStatic, "static")
configCmd = configCmd .. checkYesNo(wxUnicode, "unicode")
configCmd = configCmd .. checkYesNo(wxUniversal, "universal")
if wxHost ~= "" then configCmd = configCmd .. " --host=" .. wxHost end
if wxVersion ~= "" then configCmd = configCmd .. " --version=" .. wxVersion end
-- set the parameters to the curent configuration
buildoptions{"`" .. configCmd .." --cxxflags`"}
linkoptions{"`" .. configCmd .." --libs " .. wxLibs .. "`"}
end
-- BUG: here, using any configuration() function will reset the current filter
-- and apply configuration to all project configuration...
-- see http://industriousone.com/post/add-way-refine-configuration-filter
-- and http://sourceforge.net/tracker/?func=detail&aid=2936443&group_id=71616&atid=531881
--~ configuration "not windows"
--~ wx_config_for_posix()
--~ configuration "vs*"
--~ wx_config_for_windows("vc")
--~ configuration {"windows", "codeblocks or gmake or codelitle"}
--~ wx_config_for_windows("gcc")
if os.get() ~= "windows" then
wx_config_for_posix()
else
local allowedCompiler = {"vc", "gcc"}
if not table.contains( allowedCompiler, wxWindowsCompiler) then
print( "wrong wxWidgets Compiler specified('"..wxWindowsCompiler.."'), should be one of '".. table.concat(allowedCompiler, "', '").."'" )
wxWindowsCompiler = "vc"
end
--~ BUG/WISH: I need a function like compiler.get() that return the project/configuration compiler
--~ local wxWindowsCompiler = "vc"
--~ BUG? --cc=compiler standard premake option is not registered in the _OPTIONS array
--~ if _OPTIONS and _OPTIONS["cc"] then
--~ wxWindowsCompiler = _OPTIONS.cc
--~ print("seen option '--cc=" .. _OPTIONS["cc"] .. "' overriding default cc='vc'")
--~ end
wx_config_for_windows(wxWindowsCompiler)
end
end
function init_filters()
filter { "platforms:Win32" }
system "Windows"
architecture "x32"
filter { "platforms:Win64" }
system "Windows"
architecture "x64"
filter { "configurations:*Debug" }
defines {
"DEBUG",
"_DEBUG"
}
flags { "Symbols" }
targetsuffix "d"
filter { "configurations:*Release" }
defines {
"NDEBUG"
}
flags { "Optimize" }
filter {}
end
function make_filters(libname)
filter { "configurations:not DLL*" }
kind "StaticLib"
defines {
"_LIB",
"WXMAKINGLIB_" .. libname
}
if (is_msvc) then
targetdir("lib/"..vc_with_ver.."0_lib")
else
targetdir("lib/gcc_lib")
end
filter { "configurations:DLL*" }
kind "SharedLib"
defines {
"_USRDLL",
"WXMAKINGDLL_" .. libname
}
if (is_msvc) then
targetdir("lib/"..vc_with_ver.."0_dll")
else
targetdir("lib/gcc_dll")
end
filter { "configurations:*Debug" }
targetsuffix "d"
filter { "configurations:*Release" }
targetsuffix ""
filter { "configurations:Debug" }
wx_config {Unicode="yes", Version=_OPTIONS["wx_ver"], Static="yes", Debug="yes"}
filter { "configurations:DLL Debug" }
wx_config {Unicode="yes", Version=_OPTIONS["wx_ver"], Static="no", Debug="yes"}
filter { "configurations:Release" }
wx_config {Unicode="yes", Version=_OPTIONS["wx_ver"], Static="yes", Debug="no"}
filter { "configurations:DLL Release" }
wx_config {Unicode="yes", Version=_OPTIONS["wx_ver"], Static="no", Debug="no"}
filter {}
end
function use_filters(libname)
filter { "configurations:not DLL*" }
defines {
"WXUSINGLIB_" .. libname
}
filter { "configurations:DLL*" }
defines {
"WXUSINGDLL_" .. libname
}
filter { "configurations:*Debug" }
targetsuffix "d"
filter { "configurations:*Release" }
targetsuffix ""
filter { "configurations:Debug" }
wx_config {Unicode="yes", Version=_OPTIONS["wx_ver"], Static="yes", Debug="yes"}
filter { "configurations:DLL Debug" }
wx_config {Unicode="yes", Version=_OPTIONS["wx_ver"], Static="no", Debug="yes"}
filter { "configurations:Release" }
wx_config {Unicode="yes", Version=_OPTIONS["wx_ver"], Static="yes", Debug="no"}
filter { "configurations:DLL Release" }
wx_config {Unicode="yes", Version=_OPTIONS["wx_ver"], Static="no", Debug="no"}
filter {}
end
|