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
15
RemoteControl/Makefile
Normal file
15
RemoteControl/Makefile
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
OBJECTS = RemoteControlApp.o RemoteControlCallsignData.o RemoteControlConfig.o RemoteControlFrame.o RemoteControlLinkData.o \
|
||||
RemoteControlPreferences.o RemoteControlRemoteControlHandler.o RemoteControlRemoteSet.o RemoteControlRepeaterData.o \
|
||||
RemoteControlRepeaterPanel.o RemoteControlStarNetGroup.o RemoteControlStarNetPanel.o RemoteControlStarNetUser.o
|
||||
|
||||
all: remotecontrol
|
||||
|
||||
remotecontrol: $(OBJECTS)
|
||||
$(CXX) $(OBJECTS) ../GUICommon/GUICommon.a ../Common/Common.a $(LDFLAGS) $(LIBS) -o remotecontrol
|
||||
|
||||
%.o: %.cpp
|
||||
$(CXX) $(CFLAGS) -I../Common -I../GUICommon -c -o $@ $<
|
||||
|
||||
clean:
|
||||
$(RM) remotecontrol *.o *.d *.bak *~
|
||||
|
||||
|
|
@ -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
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
#include <wx/config.h>
|
||||
#include <wx/cmdline.h>
|
||||
|
||||
IMPLEMENT_APP(CRemoteControlApp)
|
||||
wxIMPLEMENT_APP(CRemoteControlApp);
|
||||
|
||||
const wxChar* NAME_PARAM = wxT("Name");
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2011,2012,2013 by Jonathan Naylor G4KLX
|
||||
* Copyright (C) 2011,2012,2013 b,2018y 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
|
||||
|
|
@ -54,6 +54,6 @@ private:
|
|||
CRemoteControlConfig* m_config;
|
||||
};
|
||||
|
||||
DECLARE_APP(CRemoteControlApp)
|
||||
wxDECLARE_APP(CRemoteControlApp);
|
||||
|
||||
#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
|
||||
|
|
@ -179,7 +179,7 @@ void CRemoteControlFrame::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\nircDDB Gateway and STARnet Digital Server."));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue