Skip to content

Instantly share code, notes, and snippets.

@nico-izo
Created November 3, 2016 22:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nico-izo/f3a2db35566dd986b6158018529435f1 to your computer and use it in GitHub Desktop.
Save nico-izo/f3a2db35566dd986b6158018529435f1 to your computer and use it in GitHub Desktop.
qbs simple project
#include <iostream>
int main()
{
std::cout << "foo bar" << std::endl;
return 0;
}
import qbs.base 1.0
Project {
name: "qbs_segfault"
Product {
Depends {
name: "cpp"
}
name: "qbs_segfault_cpp"
type: "application"
files: [
"main.cpp"
]
Group {
qbs.install: true
qbs.installDir: "bin"
fileTagsFilter: "application"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment