Install executables for sfrx, sftx, and foxchk in the WSJT-X installation package.

This commit is contained in:
Uwe Risse 2024-05-11 16:44:31 +02:00
parent 0b709251ed
commit 8978b81308
8 changed files with 30 additions and 1 deletions

1
.gitignore vendored
View File

@ -7,7 +7,6 @@ GTAGS
*~
junk*
jnq*
*.exe
*.o
*.mod
*.pro.user

View File

@ -1657,6 +1657,36 @@ install (DIRECTORY
#COMPONENT runtime
)
if (WIN32)
install (FILES
lib/superfox/win/sfrx.exe
lib/superfox/win/sftx.exe
lib/superfox/win/foxchk.exe
DESTINATION ${CMAKE_INSTALL_BINDIR}
#COMPONENT runtime
)
endif (WIN32)
if (UNIX)
install (FILES
lib/superfox/linux/sfrx
lib/superfox/linux/sftx
lib/superfox/linux/foxchk
DESTINATION ${CMAKE_INSTALL_BINDIR}
#COMPONENT runtime
)
endif (UNIX)
if (APPLE)
install (FILES
lib/superfox/mac/sfrx
lib/superfox/mac/sftx
lib/superfox/mac/foxchk
DESTINATION ${CMAKE_INSTALL_BINDIR}
#COMPONENT runtime
)
endif (APPLE)
#
# Mac installer files
#

BIN
lib/superfox/linux/foxchk Normal file

Binary file not shown.

BIN
lib/superfox/linux/sfrx Normal file

Binary file not shown.

BIN
lib/superfox/linux/sftx Normal file

Binary file not shown.

BIN
lib/superfox/win/foxchk.exe Normal file

Binary file not shown.

BIN
lib/superfox/win/sfrx.exe Normal file

Binary file not shown.

BIN
lib/superfox/win/sftx.exe Normal file

Binary file not shown.