[micro-manager-general] C++ Qt MMCore on OSx
Status: Beta
Brought to you by:
nicost
|
From: Fabrizio R. <f.r...@ca...> - 2016-09-29 11:12:19
|
Hi, I'm beginner with MMCore and I have some problem using it. I've
downloaded the source code and I've included "micromanager" and
"3rdpartypublic" folders in my project. After I wrote this simple code:
#include <QCoreApplication>
#include <QDebug>
#include "Configuration.h"
#include "MMCore.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
CMMCore core;
core.getVersionInfo();
return a.exec();
}
But I got this alert:
" 'const' type qualifier on return type has no effect
[-Wignored-qualifiers] const bool IsReadOnly() const {return readOnly_;} "
and this errors:
" error: symbol(s) not found for architecture x86_64 "
" error: linker command failed with exit code 1 (use -v to see invocation) "
Is it necessary to do something before include the two folders? How can I
fix the errors?
|