Y
Hacker News
new
|
ask
|
show
|
jobs
by
scrollaway
2447 days ago
I read somewhere a few months back that qt is dropping qmake in favour of cmake in the medium term. And everyone rejoiced.
2 comments
detaro
2447 days ago
building Qt apps with CMake is already possible and supported. Building Qt itself with CMake is an active project, and the long-term plan is indeed to drop qmake completely.
link
amelius
2447 days ago
That's a step in the right direction. The next thing would be to drop the compiler extensions (signal/slots macros) in favor of modern C++.
link
jcelerier
2447 days ago
There is sadly no reflection nore code generation yet in C++ so that cannot work without lots of ugly macros.
link
_fbpt
2447 days ago
Verdigris is a moc replacement (not a Qt fork like CopperSpice) which generates QMetaObject through macros using constexpr.
link
kevin_thibedeau
2447 days ago
Already done by CopperSpice.
link