renamed proplist sample

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6703 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ron Lee
2000-03-14 18:20:11 +00:00
parent 9ce2171eed
commit 30b641919c
11 changed files with 28 additions and 71 deletions

View File

@@ -1,19 +1,11 @@
#
# File: makefile.unx
# Author: Julian Smart
# Created: 1998
# Updated:
# Copyright: (c) 1998 Julian Smart
#
# "%W% %G%"
#
# Makefile for proplist example (UNIX).
# Purpose: makefile for proplist example (UNIX).
# Created: 2000-03-15
top_srcdir = @top_srcdir@/..
top_builddir = ../..
program_dir = samples/proplist
PROGRAM=test
PROGRAM=proplist
OBJECTS=$(PROGRAM).o

View File

@@ -1,15 +1,9 @@
#
# File: makefile.b32
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright:
#
# Makefile : Builds sample for 32-bit BC++
# Purpose: makefile for proplist example (BC++ 32bit)
# Created: 2000-03-15
WXDIR = $(WXWIN)
TARGET=test
TARGET=proplist
OBJECTS = $(TARGET).obj
!include $(WXDIR)\src\makeprog.b32

View File

@@ -1,10 +1,5 @@
#
# File: makefile.bcc
# Author: Julian Smart
# Created: 1998
# Updated:
#
# Builds a BC++ 16-bit sample
# Purpose: makefile for proplist example (BC++ 16bit)
# Created: 2000-03-15
!if "$(WXWIN)" == ""
!error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx
@@ -12,7 +7,7 @@
WXDIR = $(WXWIN)
TARGET=test
TARGET=proplist
OBJECTS=$(TARGET).obj
!include $(WXDIR)\src\makeprog.bcc

View File

@@ -1,16 +1,9 @@
#
# File: makefile.dos
# Author: Julian Smart
# Created: 1998
# Updated:
#
# Makefile : Builds 16-bit sample, VC++ 1.5
# Use FINAL=1 argument to nmake to build final version with no debugging
# info
# Purpose: makefile for proplist example (VC++ 1.5x)
# Created: 2000-03-15
WXDIR = $(WXWIN)
TARGET=test
TARGET=proplist
OBJECTS=$(TARGET).obj
!include $(WXDIR)\src\makeprog.msc

View File

@@ -1,16 +1,10 @@
#
# File: makefile.g95
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright: (c) Julian Smart, 1999
#
# Makefile for wxWindows sample (Cygwin/Mingw32).
# Purpose: makefile for proplist example (Cygwin/Mingw32)
# Created: #03.01.00
WXDIR = ../..
TARGET=test
TARGET=proplist
OBJECTS = $(TARGET).o
include $(WXDIR)/src/makeprog.g95
include $(WXDIR)\src\makeprog.g95

View File

@@ -1,17 +1,10 @@
#
# File: makefile.vc
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright: (c) Julian Smart
#
# Makefile : Builds sample (VC++, WIN32)
# Use FINAL=1 argument to nmake to build final version with no debug info.
# Purpose: makefile for proplist example (VC++ 32bit)
# Created: 2000-03-15
# Set WXDIR for your system
WXDIR = $(WXWIN)
PROGRAM=test
PROGRAM=proplist
OBJECTS = $(PROGRAM).obj
!include $(WXDIR)\src\makeprog.vc

View File

@@ -1,13 +1,9 @@
#
# Makefile for WATCOM
#
# Created by Julian Smart, January 1999
#
#
# Purpose: makefile for proplist example (Watcom)
# Created: 2000-03-15
WXDIR = $(%WXWIN)
PROGRAM = test
PROGRAM = proplist
OBJECTS = $(PROGRAM).obj
!include $(WXDIR)\src\makeprog.wat

View File

@@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////////
// Name: test.cpp
// Name: proplist.cpp
// Purpose: Property sheet test implementation
// Author: Julian Smart
// Modified by:
@@ -10,7 +10,7 @@
/////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
#pragma implementation "test.h"
#pragma implementation "proplist.h"
#endif
// For compilers that support precompilation, includes "wx/wx.h".
@@ -24,7 +24,7 @@
#include "wx/wx.h"
#endif
#include "test.h"
#include "proplist.h"
IMPLEMENT_APP(MyApp)

View File

@@ -1,4 +1,4 @@
NAME TEST
NAME Proplist
DESCRIPTION 'wxProperty test'
EXETYPE WINDOWS
STUB 'WINSTUB.EXE'

View File

@@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////////
// Name: test.h
// Name: proplist.h
// Purpose: Property sheet sample
// Author: Julian Smart
// Modified by:
@@ -10,7 +10,7 @@
/////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
#pragma interface "test.h"
#pragma interface "proplist.h"
#endif
#ifndef _PROPTEST_H_