Building the AeroME from source (GitHub) gives me the following error:
/tmp $ qmake && make -j4
...
g++: error: /tmp/am-aerome/src/leveldb/libleveldb.a: No such file or directory
g++: error: /tmp/am-aerome/src/leveldb/libmemenv.a: No such file or directory
Makefile:335: recipe for target 'aerome-qt' failed
make: *** [aerome-qt] Error 1
/tmp $
The qmake command succeeds, but the make fails.
I was able to solve it with the following commands, thanks to
pricdx01's post:
$ cd am-aerome/src/leveldb/
$ chmod +x build_detect_platform
$ ./build_detect_platform build_config.mk ./
$ cd ..
$ make -f makefile.unix
$ cd ..
$ make
Now you will have aerome-qt in the am-aerome directory, and aeromed in am-aerome/src.