forked from wxFormBuilder/wxFormBuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwxflatnotebook.lua
39 lines (34 loc) · 1.37 KB
/
wxflatnotebook.lua
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
-----------------------------------------------------------------------------
-- Name: wxflatnotebook.lua
-- Purpose: wxFlatNotebook library build script.
-- Author: Andrea Zanellato
-- Modified by:
-- Created: 21/10/2011
-- Copyright: (c) 2011 wxFormBuilder Team
-- Licence: GNU General Public License Version 2
-----------------------------------------------------------------------------
project "wxFlatNotebook"
kind "SharedLib"
files
{
"../../src/controls/src/wxFlatNotebook/*.cpp",
"../../src/controls/include/wx/wxFlatNotebook/*.h"
}
includedirs {"../../src/controls/include"}
defines {"WXMAKINGDLL_FNB"}
flags {"ExtraWarnings"}
targetsuffix ( "-" .. wxVersion .. "_wxfb" )
if wxArchitecture then
buildoptions {"-arch " .. wxArchitecture}
end
configuration "not windows"
targetdir "../../output/lib/wxformbuilder"
configuration "windows"
targetdir "../../output"
configuration "Release"
buildoptions {"-fno-strict-aliasing"}
targetname ( CustomPrefix .. "_flatnotebook" )
wx_config {}
configuration "Debug"
targetname ( CustomPrefix .. wxDebugSuffix .. "_flatnotebook" )
wx_config { Debug="yes" }