Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tales of MajEyal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
K'van
Tales of MajEyal
Commits
1dcb2f53
Commit
1dcb2f53
authored
11 years ago
by
DarkGod
Browse files
Options
Downloads
Patches
Plain Diff
build for windows
parent
33e091f9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/web/build/windows/build.bat
+36
-0
36 additions, 0 deletions
src/web/build/windows/build.bat
with
36 additions
and
0 deletions
src/web/build/windows/build.bat
0 → 100644
+
36
−
0
View file @
1dcb2f53
@rem Script to compile T-Engine's webapi functionality.
@rem See copyright notice in web-te4.h.
@rem To use: load a windows SDK command prompt, navigate to source file root
@rem setenv /release /x86 /xp
@rem build\windows\build-te4-web.bat
@rem SDK tools to use (with options)
@rem TODO: offer a debugging build?
@if
not
defined
INCLUDE
goto
:BADENV
@setlocal
@set
CXX
=
cl
@set
CXXFLAGS
=
/nologo /MT /O
2
/W
3
/D
_CRT_SECURE_NO_DEPRECATE
/EHsc
@rem @set CXXFLAGS=/nologo /MT /Od /Zi /Wall /D_CRT_SECURE_NO_DEPRECATE /EHsc
@set
DLLNAME
=
te4
-web
.dll
@set
LIBNAME
=
te4
-web
.lib
@set
TE4_WEB_C
=
web
.cpp
web
-utils
.cpp
gl_texture_surface
.cpp
@set
TE4_WEB_INCLUDES
=
/I
".."
/I
"C:\MingW\include\SDL2"
/I
"n:\libs\awesomium\1.7.3.0\include"
@set
TE4_WEB_LIBS
=
"n:\libs\awesomium\1.7.3.0\build\lib\awesomium.lib"
%CXX%
%CXXFLAGS%
/LD /Fe
%DLLNAME%
%TE4
_WEB_INCLUDES
%
%TE4
_WEB_C
%
%TE4
_WEB_LIBS
%
@if
errorlevel
1
goto
:COMPILATION
_ERROR
@rem All done.
@echo
Successfully
built
%DLLNAME%
.
@goto
:END
:COMPILATION
_ERROR
@echo
ERROR
:
Failed
to
build
te4web
.
Check
SDK
tool
output
for
errors
.
@goto
:END
:BAD
_ENV
@echo
ERROR
:
Must
be
compiled
in
a
Windows
SDK
Command
Prompt
!
:END
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment