diff --git a/.gitignore b/.gitignore index 8a21e3b72..cc61709db 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,6 @@ GTAGS *~ junk* jnq* -*.exe *.o *.mod *.pro.user diff --git a/CMakeLists.txt b/CMakeLists.txt index a31590e27..0b5b5b8b8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 # diff --git a/lib/superfox/linux/foxchk b/lib/superfox/linux/foxchk new file mode 100644 index 000000000..1a74eb0fc Binary files /dev/null and b/lib/superfox/linux/foxchk differ diff --git a/lib/superfox/linux/sfrx b/lib/superfox/linux/sfrx new file mode 100644 index 000000000..b40afc4b8 Binary files /dev/null and b/lib/superfox/linux/sfrx differ diff --git a/lib/superfox/linux/sftx b/lib/superfox/linux/sftx new file mode 100644 index 000000000..396facd03 Binary files /dev/null and b/lib/superfox/linux/sftx differ diff --git a/lib/superfox/win/foxchk.exe b/lib/superfox/win/foxchk.exe new file mode 100644 index 000000000..b5a82ff70 Binary files /dev/null and b/lib/superfox/win/foxchk.exe differ diff --git a/lib/superfox/win/sfrx.exe b/lib/superfox/win/sfrx.exe new file mode 100644 index 000000000..6f259891c Binary files /dev/null and b/lib/superfox/win/sfrx.exe differ diff --git a/lib/superfox/win/sftx.exe b/lib/superfox/win/sftx.exe new file mode 100644 index 000000000..55f8421ac Binary files /dev/null and b/lib/superfox/win/sftx.exe differ