7 lines
198 B
Plaintext
7 lines
198 B
Plaintext
Rscons::Environment.new do |env|
|
|
sources = Dir["**/*.cc"]
|
|
env.parse_flags!("!pkg-config --cflags --libs Qt5Core Qt5Gui Qt5Widgets")
|
|
env.parse_flags!("-fPIE")
|
|
env.Program("app", sources)
|
|
end
|