- add a jamfile and rdef
- remove makefile and rsrc as it builds fine from jam - add to the build git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25441 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
1d7c2d4adc
commit
a4a6c26a2a
@ -42,5 +42,6 @@ SubInclude HAIKU_TOP src apps sudoku ;
|
||||
SubInclude HAIKU_TOP src apps terminal ;
|
||||
SubInclude HAIKU_TOP src apps tracker ;
|
||||
SubInclude HAIKU_TOP src apps tv ;
|
||||
SubInclude HAIKU_TOP src apps webwatch ;
|
||||
SubInclude HAIKU_TOP src apps workspaces ;
|
||||
|
||||
|
16
src/apps/webwatch/Jamfile
Normal file
16
src/apps/webwatch/Jamfile
Normal file
@ -0,0 +1,16 @@
|
||||
SubDir HAIKU_TOP src apps webwatch ;
|
||||
|
||||
SetSubDirSupportedPlatformsBeOSCompatible ;
|
||||
|
||||
#UsePrivateHeaders app ;
|
||||
#UsePrivateHeaders shared ;
|
||||
#UsePrivateHeaders tracker ;
|
||||
#SubDirHdrs $(HAIKU_TOP) src kits tracker ;
|
||||
|
||||
Application WebWatch :
|
||||
WatchApp.cpp
|
||||
WatchView.cpp
|
||||
: be
|
||||
: WebWatch.rdef
|
||||
;
|
||||
|
20
src/apps/webwatch/WebWatch.rdef
Normal file
20
src/apps/webwatch/WebWatch.rdef
Normal file
@ -0,0 +1,20 @@
|
||||
|
||||
resource app_signature "application/x-vnd.mahlzeit.webwatch";
|
||||
|
||||
resource app_version {
|
||||
major = 1,
|
||||
middle = 5,
|
||||
minor = 0,
|
||||
variety = B_APPV_FINAL,
|
||||
internal = 0,
|
||||
short_info = "WebWatch",
|
||||
long_info = "WebWatch 1.5.0 ©1999-2003 Matthijs Hollemans.,\n"
|
||||
"©2008 Haiku, Inc.\n"
|
||||
"A port of Swatch Internet Time "
|
||||
};
|
||||
|
||||
resource app_flags B_SINGLE_LAUNCH | B_BACKGROUND_APP;
|
||||
|
||||
/*resource file_types message {
|
||||
};*/
|
||||
|
Binary file not shown.
@ -1,24 +0,0 @@
|
||||
# Makefile for WebWatch
|
||||
|
||||
NAME= WebWatch
|
||||
TYPE= APP
|
||||
SRCS= WatchApp.cpp WatchView.cpp
|
||||
RSRCS= WebWatch.rsrc
|
||||
LIBS= be
|
||||
LIBPATHS=
|
||||
SYSTEM_INCLUDE_PATHS =
|
||||
LOCAL_INCLUDE_PATHS =
|
||||
OPTIMIZE= FULL
|
||||
DEFINES=
|
||||
WARNINGS = ALL
|
||||
SYMBOLS = FALSE
|
||||
DEBUGGER = FALSE
|
||||
COMPILER_FLAGS =
|
||||
LINKER_FLAGS =
|
||||
|
||||
include /boot/develop/etc/makefile-engine
|
||||
|
||||
release:
|
||||
@strip $(OBJ_DIR)/$(NAME)
|
||||
@xres -o $(OBJ_DIR)/$(NAME) $(RSRCS)
|
||||
@mimeset -f $(OBJ_DIR)/$(NAME)
|
Loading…
Reference in New Issue
Block a user