mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-04-05 14:25:43 +00:00
The beginning of Linux build support.
This commit is contained in:
parent
12d55cef37
commit
bb602947f4
31 changed files with 273 additions and 36 deletions
14
TimerControl/Makefile
Normal file
14
TimerControl/Makefile
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
OBJECTS = TimerControlApp.o TimerControlConfig.o TimerControlFrame.o TimerControlItemFile.o TimerControlPreferences.o \
|
||||
TimerControlRemoteControlHandler.o TimerControlRemoteSet.o TimerControlRepeaterPanel.o TimerControlThread.o TimerControlThreadHelper.o
|
||||
|
||||
all: timercontrol
|
||||
|
||||
timercontrol: $(OBJECTS)
|
||||
$(CXX) $(OBJECTS) ../GUICommon/GUICommon.a ../Common/Common.a $(LDFLAGS) $(LIBS) -o timercontrol
|
||||
|
||||
%.o: %.cpp
|
||||
$(CXX) $(CFLAGS) -I../Common -I../GUICommon -c -o $@ $<
|
||||
|
||||
clean:
|
||||
$(RM) timercontrol *.o *.d *.bak *~
|
||||
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2011-2015 by Jonathan Naylor G4KLX
|
||||
* Copyright (C) 2011-2015,2018 by Jonathan Naylor G4KLX
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
|
@ -26,7 +26,7 @@
|
|||
#include <wx/cmdline.h>
|
||||
#include <wx/filename.h>
|
||||
|
||||
IMPLEMENT_APP(CTimerControlApp)
|
||||
wxIMPLEMENT_APP(CTimerControlApp);
|
||||
|
||||
const wxChar* NAME_PARAM = wxT("Name");
|
||||
const wxChar* NOLOGGING_SWITCH = wxT("nolog");
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2011,2012,2013 by Jonathan Naylor G4KLX
|
||||
* Copyright (C) 2011,2012,2013,2018 by Jonathan Naylor G4KLX
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
|
@ -69,6 +69,6 @@ private:
|
|||
void createThread();
|
||||
};
|
||||
|
||||
DECLARE_APP(CTimerControlApp)
|
||||
wxDECLARE_APP(CTimerControlApp);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2011-2015 by Jonathan Naylor G4KLX
|
||||
* Copyright (C) 2011-2015,2018 by Jonathan Naylor G4KLX
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
|
@ -168,7 +168,7 @@ void CTimerControlFrame::onAbout(wxCommandEvent&)
|
|||
{
|
||||
wxAboutDialogInfo info;
|
||||
info.AddDeveloper(wxT("Jonathan Naylor, G4KLX"));
|
||||
info.SetCopyright(wxT("(C) 2011-2015 using GPL v2 or later"));
|
||||
info.SetCopyright(wxT("(C) 2011-2018 using GPL v2 or later"));
|
||||
info.SetName(APPLICATION_NAME);
|
||||
info.SetVersion(VERSION);
|
||||
info.SetDescription(_("This program allows for the controlling of\nthe ircDDB Gateway."));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue