Create a separate SRC for Ubuntu compilation , without all the nifty pre-make etc.
What is an SRC?
What is the problem with pre-make? It's literally just as easy as cmake to build with, and even easier to write the script part.
With premake and vcpkg we were able to successfully, and very easily, build BlackTek Server on MANY linux distro's, even built it on a phone.
I understand people are intimidated by it, and that some are having issues with linux compilation... I know that he wiki is a horrible mess and copying those commands onto ubuntu won't work out of box... Keeping all this in mind, its already being worked on. There is a script that has been under development for a little while now that has been tested on virtually every linux distro one might want to run a server on, that literally handles everything for the build from installing vcpkg and premake, to installing the libraries, and even handling the compilation for you as well. This script is being polished off before being submitted to the main repo, but if you wanna have a look at an already out-dated version (perhaps it works without error for you) I will attach it. It belongs inside the project's (BlackTek-Server) folder.
Give it some time, the script will be fully ready and complete soon, at which time it will become included with the project and all you will have to do to build is to
Bash:
git clone https://github.com/Black-Tek/BlackTek-Server.git
cd BlackTek-Server
./bootstrap.sh
and respond to the prompt asking if you wanna do debug or release, and that's it!
Here is that out-dated version, I don't have the up to date version, its being developed by Forgee. He has gone above and beyond to make a full proof bootstrap that works with almost any linux configuration. Otland wouldn't allow an upload of a shell script, so you will either have overwrite the file extension from txt to sh or copy the text into a new file and save it as bootstrap.sh, add the script into the black tek server repository folder, and run it.
Oh, and please don't join the premake hating bandwagon just yet. This script should make compiling on linux 10x easier than any of the other servers, and its already super easy on windows. I could make it as easy as TFS on windows by creating .sln file, but that could lead to un-expected or weird errors that would be hard to isolate, and honestly its not that hard to run one command on the cmd prompt to generate your own solution file that would be error free. I am however considering creating a bootstrap.bat to make it easier for windows users too, but for now, if they can't handle running a single command from the command line, they have no business trying to compile the project anyways.
PS. I am also working on learning and building workflows for BlackTek-Server, which I can use to build binaries nightly, avoiding the need to compile all together for those who are not writting their own C++ code or doing source edits.