gpt4 book ai didi

c++ - 如何在 mac 中使用 gcc 链接到 carbon?

转载 作者:行者123 更新时间:2023-11-30 02:07:53 24 4
gpt4 key购买 nike

我在 mac 中开发了一个使用 carbon 的应用程序。

我的 IDE 是 Code::Blocks(GCC 编译器)。我的代码编译成功但没有链接。

#include <iostream>
#include <Carbon/Carbon.h>

using namespace std;

int main()
{
//CGEventFlags flags = CGEventSourceFlagsState(1);

while(true)
{
CGEventSourceStateID eventSource = kCGEventSourceStateCombinedSessionState;
bool b = CGEventSourceKeyState(eventSource, kVK_Command) && CGEventSourceKeyState(eventSource, kVK_ANSI_Period);
if(b)
{
cout << "Yes" << endl;
}
else
{
cout << "No" << endl;
}
}

cout << "Hello world!" << endl;
return 0;
}

如何在 mac 中使用 gcc 链接到 carbon?

最佳答案

根据 Internet 上的各种来源,gcc 的一个简单的 -framework Carbon 标志应该可以解决问题。

不过,无法验证这一点。

This question看起来有点相似。

关于c++ - 如何在 mac 中使用 gcc 链接到 carbon?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7454497/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com