Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
magicseteditor
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
magicseteditor
Commits
b0598130
Commit
b0598130
authored
Dec 04, 2009
by
coppro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Build system improvements
parent
553dd64f
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
2535 additions
and
2521 deletions
+2535
-2521
MakeAM.sh
MakeAM.sh
+1
-1
Makefile.am
Makefile.am
+136
-136
Makefile.in
Makefile.in
+2381
-2379
configure
configure
+16
-4
configure.ac
configure.ac
+1
-1
No files found.
MakeAM.sh
View file @
b0598130
...
@@ -12,7 +12,7 @@ echo '
...
@@ -12,7 +12,7 @@ echo '
AUTOMAKE_OPTIONS = subdir-objects
AUTOMAKE_OPTIONS = subdir-objects
bin_PROGRAMS = magicseteditor
bin_PROGRAMS = magicseteditor
AM_CXXFLAGS = @WX_CXXFLAGS@ $(BOOST_CXXFLAGS) -
DUNICODE -I
. -Wall
AM_CXXFLAGS = @WX_CXXFLAGS@ $(BOOST_CXXFLAGS) -
I
. -Wall
AM_LDFLAGS = @WX_LIBS@ $(BOOST_LDFLAGS)
AM_LDFLAGS = @WX_LIBS@ $(BOOST_LDFLAGS)
.hpp.gch:
.hpp.gch:
...
...
Makefile.am
View file @
b0598130
This diff is collapsed.
Click to expand it.
Makefile.in
View file @
b0598130
This diff is collapsed.
Click to expand it.
configure
View file @
b0598130
...
@@ -708,6 +708,7 @@ with_wxdir
...
@@ -708,6 +708,7 @@ with_wxdir
with_wx_config
with_wx_config
with_wx_prefix
with_wx_prefix
with_wx_exec_prefix
with_wx_exec_prefix
enable_pch
'
'
ac_precious_vars
=
'build_alias
ac_precious_vars
=
'build_alias
host_alias
host_alias
...
@@ -1340,6 +1341,9 @@ Optional Features:
...
@@ -1340,6 +1341,9 @@ Optional Features:
--enable-dependency-tracking do not reject slow dependency extractors
--enable-dependency-tracking do not reject slow dependency extractors
--enable-debug Enable debug build (requires debug
--enable-debug Enable debug build (requires debug
versions of wxWidgets and libstdc++.
versions of wxWidgets and libstdc++.
--enable-pch Enable precompiled headers (Requires
GCC of sufficiently high version). Speeds up compile times
significantly... if it works.
Optional Packages:
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
...
@@ -3440,11 +3444,11 @@ if test "${enable_debug+set}" = set; then :
...
@@ -3440,11 +3444,11 @@ if test "${enable_debug+set}" = set; then :
fi
fi
if
test
"x
${
DEBUG
}
"
=
x1
;
then
if
test
"x
${
DEBUG
}
"
=
x1
;
then
DEFAULT_CXXFLAGS
=
"-ggdb
3
-O0 -D_GLIBCXX_DEBUG -D_GLIBCXX_DEBUG_PEDANTIC"
DEFAULT_CXXFLAGS
=
"-ggdb -O0 -D_GLIBCXX_DEBUG -D_GLIBCXX_DEBUG_PEDANTIC"
WXCONFIG_FLAGS
=
"--debug"
WXCONFIG_FLAGS
=
"--debug
--unicode=no
"
else
else
DEFAULT_CXXFLAGS
=
"-O2"
DEFAULT_CXXFLAGS
=
"-O2"
WXCONFIG_FLAGS
=
""
WXCONFIG_FLAGS
=
"
--unicode=no
"
fi
fi
if
test
X
$user_set_cxxflags
!=
Xyes
;
then
if
test
X
$user_set_cxxflags
!=
Xyes
;
then
CXXFLAGS
=
${
DEFAULT_CXXFLAGS
}
CXXFLAGS
=
${
DEFAULT_CXXFLAGS
}
...
@@ -4912,9 +4916,17 @@ if test "${HAVE_WX}" != 1; then
...
@@ -4912,9 +4916,17 @@ if test "${HAVE_WX}" != 1; then
"
"
$LINENO
"
5
"
"
$LINENO
"
5
fi
fi
# Check whether --enable-pch was given.
if
test
"
${
enable_pch
+set
}
"
=
set
;
then
:
enableval
=
$enable_pch
;
PCH
=
1
else
PCH
=
0
fi
# Check for precompiled headers
# Check for precompiled headers
# TODO: Deal with braindead GCC and actually check
# TODO: Deal with braindead GCC and actually check
if
test
"x
$CXX
"
=
"xg++"
;
then
if
test
"x
$
PCH
"
=
"x1"
-a
"x
$
CXX
"
=
"xg++"
;
then
GLIBCPP_BUILD_PCH_TRUE
=
GLIBCPP_BUILD_PCH_TRUE
=
GLIBCPP_BUILD_PCH_FALSE
=
'#'
GLIBCPP_BUILD_PCH_FALSE
=
'#'
else
else
...
...
configure.ac
View file @
b0598130
...
@@ -58,7 +58,7 @@ fi
...
@@ -58,7 +58,7 @@ fi
AC_ARG_ENABLE(pch, [--enable-pch Enable precompiled headers (Requires
AC_ARG_ENABLE(pch, [--enable-pch Enable precompiled headers (Requires
GCC of sufficiently high version). Speeds up compile times
GCC of sufficiently high version). Speeds up compile times
significantly... if it works.], [PCH=1], [PCH=
1
])
significantly... if it works.], [PCH=1], [PCH=
0
])
# Check for precompiled headers
# Check for precompiled headers
# TODO: Deal with braindead GCC and actually check
# TODO: Deal with braindead GCC and actually check
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment