You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
260 B

#!/bin/bash
## Build launcher
unamestr=`uname`
if [[ "$unamestr" == 'Linux' ]]; then
g++ xournalpp_launcher.cpp -o xournalpp_launcher
else
windres xpp.rc -O coff -o xpp.res
g++ xournalpp_launcher.cpp xpp.res -o setup/bin/xournalpp.exe -s -Os -mwindows
fi