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
|
--------------------------------------------------------------------------------
-- finitest.pr - this file is part of Binary vIEW project (BIEW --
--------------------------------------------------------------------------------
-- Copyrights: 1998, 2000 Nick Kurshev --
-- License: See below --
-- Author and developer: Nick Kurshev --
-- Requirement: TopSpeed v3.x or above --
-- Original file name: finitest.pr --
------------------------ [ D e s c r i p t i o n ] -----------------------------
-- This project-file allows you to build BIEW in TopSpeed 3.x environment. --
---------------------------- [ L i c e n c e ] ---------------------------------
-- The Binary vIEW (BIEW) is copyright (C) 1995 Nick Kurshev. --
-- All rights reserved. This software is redistributable under the licence --
-- given in the file "Licence.en" ("Licence.ru" in russian translation) --
-- distributed in the BIEW archive. --
--------------------------------------------------------------------------------
#noedit
#system dos exe
#model xlarge jpi
#pragma optimize(speed=>off,const=>off,jump=>off,loop=>off)
#pragma call(inline_max=>7)
#pragma module(smart_link=>on)
#pragma option(nest_cmt=>on)
#pragma warn(wall=>on)
#pragma link_option(case=>on,pack=>on,share_const=>on,smart_method=>on)
#include ..\..\biew.pi
#compile %main
#pragma link(.\biewlib\libbiew.lib)
#link %prjname
|