2014-05-29から1日間の記事一覧

wxTimerを実装してみる

ここを参考に。 http://docs.wxwidgets.org/trunk/classwx_timer_event.html #include <iostream> #include "wx/wx.h" #include "wx/timer.h" int TIMER_ID = 1; class MyFrame : public wxFrame { public: MyFrame(); void OnTimer(wxTimerEvent& event); private: wx</iostream>…

WxWidgets用のMakefile

ワイルドカードを使うと便利に書ける。 http://urin.github.io/posts/2013/simple-makefile-for-clang/ WxWidgets自体はbrew install wxmacでインストールしている。 COMPILE = g++ LIBS = `wx-config --libs` FLAGS = `wx-config --cxxflags` SOURCE = *.cp…

Macの再インストールでhomebrewが壊滅したのを直すスクリプト

2週間に1回システムファイルが壊れて起動できなくなるMavericksはどうなっているのか。 homebrewはリンク切れしてるだけのようなので、brew unlink, brew linkを実行すればOK。 以下は自動化したスクリプト。rescue.py import os import commands status, ou…