GNUstep 介绍见
安装相关程序
直接 apt-get install 搞定。
- build-essential
- gnustep
- gnustep-devel
- gnustep-examples
- gobjc
- gobjc++
设置环境变量
为了方便使用 GNUstep 的各种编译工具,需要先在 .bashrc 中导入 GNUstep 的脚本。
# Setup GNUstep
GNUSTEP_MAKEFILES=/usr/share/GNUstep/Makefiles
export GNUSTEP_MAKEFILES
source $GNUSTEP_MAKEFILES/GNUstep.sh
编写 Makefile
使用 Makefile 来编译 Objective-C App,注意 Makefile 的文件名为 GNUmakefile。
include $(GNUSTEP_MAKEFILES)/common.make
APP_NAME=HelloWorld
HelloWorld_OBJC_FILES=test.m
include $(GNUSTEP_MAKEFILES)/application.make
这个是编译出 Mac OS …
阅读全文 »
近期评论