https://github.com/Kitware/CMake
Raw File
Tip revision: 7a04f45722b2cbe51e1586cd84d2c5ad90e759ed authored by Brad King on 06 November 2020, 14:19:57 UTC
CMake 3.19.0-rc3
Tip revision: 7a04f45
main_wrap_test.cpp

#include <QObject>

#include "mywrapobject.h"

int main(int argc, char** argv)
{
  MyWrapObject mwo;
  mwo.objectName();
  return 0;
}
back to top