Parent Directory
|
Revision Log
Rolled back revision 451, since the DLL loading issue on Windows is now resolved. Fixed up some #ifdef brackets in slv*.h headers. Added NSIS functionality to SConstruct file Renamed default installer to 'ascend-setup.exe' pending a more clever approach to version numbers.
1 | import os |
2 | env = Environment(ENV=os.environ) |
3 | |
4 | srcs = Split(""" |
5 | extfntest.c |
6 | """) |
7 | |
8 | env.SharedLibrary("extfntest",srcs |
9 | , CPPPATH=['../../../base/generic'] |
10 | , LIBPREFIX='' |
11 | , LIBS=['ascend'] |
12 | , LIBPATH=['../../..'] |
13 | ) |
14 | |
15 | # To run the test |
16 | # type |
17 | # |
18 | # PYTHONPATH=../../../pygtk/interface ./extfntest.py |
19 |
john.pye@anu.edu.au | ViewVC Help |
Powered by ViewVC 1.1.22 |