Last change
on this file since 25 was 7, checked in by umoeller, 25 years ago |
Initial checkin of helpers code, which used to be in WarpIN.
|
-
Property svn:eol-style
set to
CRLF
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
655 bytes
|
Line | |
---|
1 | #
|
---|
2 | # This is a sample implementation for a setup.in file
|
---|
3 | # which should reside in the directory pointed to by
|
---|
4 | # $(PROJECT_BASE_DIR).
|
---|
5 | #
|
---|
6 |
|
---|
7 | # HELPERS_OUTPUT_DIR: where to put the *.obj and *.lib files;
|
---|
8 | # this gets created if it doesn't exist
|
---|
9 | HELPERS_OUTPUT_DIR = $(PROJECT_BASE_DIR)\bin
|
---|
10 |
|
---|
11 | # extend include path; this must include the helpers "include"
|
---|
12 | # directory (the parent of include\helpers)
|
---|
13 | INCLUDE = $(PROJECT_BASE_DIR)\include;$(INCLUDE)
|
---|
14 |
|
---|
15 | # COMPILER SETUP
|
---|
16 | # --------------
|
---|
17 |
|
---|
18 | CC_WARNINGS = /w3 /Wcmp+ /Wcnd- /Wcns+ /Wcnv+ /Wgen /Wcns /Wcpy /Wobs /Word- /Wpro /Wrea /Wret /Wtru
|
---|
19 |
|
---|
20 | CC_HELPERS = icc $(CC_WARNINGS) /c /q+ /se /ss
|
---|
21 |
|
---|
22 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.