タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

cmakeに関するrutebozuのブックマーク (4)

  • mir the developer

    早いもので11月ですね。気が付くと、いくつかネタが出てきていますのでこそっとエントリを書いておこうと思います。 groongaストレージエンジン groongaストレージエンジンは8月のv0.1リリース以来、月1回のペースで順調にリリースが継続されています。リリース予定日は毎月29日。通称「肉リリース」というものらしいです。 29日にリリースするのが重要ということで、リリースノート( http://mroonga.github.com/news.html#news )上でのリリース日も29日になっています。(このリリースノートが書かれるのは実際には29日よりも数日前だったりするのですが以下略) というわけで当面月1回のリリースが進められて行きそうです。 ロードマップも公開されていますので、ご興味がある方はご覧下さい。 http://redmine.groonga.org/projects/

    mir the developer
  • niitsuma blog

    Install JUnit Download junit-4.10.jar from http://sourceforge.net/projects/junit/files/junit/4.10/ to workspace/your-project/lib/ start eclipse select your-project top node right click select [Refresh] select your-project top node right click select [Property] select [Java Build Path] select [Libraries] tab click [add JARs] select lib/junit-4.10.jar click [OK] ref http://www.okapiproject.com/java/

    niitsuma blog
  • cmakeを試しにいじってみる | 路頭に迷う日々

    cmakeはconfigureスクリプトの置き換えを狙ってるものなんですね。 ってことで、cmakeを展開したディレクリの中にExample/Helloというサンプルあるので実験。 CMakeLists.txtはこんな感じの1行しか無いシンプルなもの。 [solaris-devx:Hello% ] cat CMakeLists.txt # Create a library called "Hello" which includes the source file "hello.cxx". # The extension is already found. Any number of sources could be listed here. add_library (Hello hello.cxx) cmakeしてみる。最初ファイルはこの3つだけ。 [solaris-devx:Hello%

    cmakeを試しにいじってみる | 路頭に迷う日々
  • CMake Tutorial - ISCWiki

    Disclaimer: this page is meant to help Insight Journal submitters who are unfamiliar with CMake. If you're interested in learning more than this page has to offer, check out the CMake Documentation Page [edit] Introduction CMake is a cross platform build tool. It generates makefiles and/or workspaces native to the platform on which it's run. CMake also facilitates testing. This allows you to ens

  • 1