Fóruns: Developers (Thread #13603)

Subversion でのソースコード管理を始めました (2007-02-08 12:34 by exeal #27501)


Subversion を使ったソースコードの管理を開始しました。
ディレクトリの構造はまだ完全ではありませんが、お知らせします。
リポジトリは Web ブラウザで閲覧できます。

http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi/?root=alpha

チェックアウトの詳細は SourceForge.jp のドキュメントを読んください。

http://sourceforge.jp/projects/sourceforge/document/how_to_use_subversion/ja/9/how_to_use_subversion.html

Responder a #27501×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) Login

RE: Subversion でのソースコード管理を始めました (2009-07-19 00:29 by h.k #45041)

stdafx.h が subversion から取得できませんでした。
(VisualStudio2008 でコンパイルを試行錯誤してみましたが無理。)
Responder a #27501

Responder a #45041×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) Login

RE: Subversion でのソースコード管理を始めました (2009-07-23 00:49 by exeal #45098)

こんばんは。

現在はプリコンパイル済みヘッダを使っていないので stdafx.h は不要です。
stdafx.h を参照しているファイルは以下の通りですが、
すべてプロジェクトに含まれていないかコンパイルしない設定になっていると思います。

text-buffer-test.cpp
bookmark-dialog.cpp
command.cpp
keyboard-map.cpp
mru-manager.cpp
print.cpp
search-dialog.cpp
temporary-macro.cpp

エラーが発生した箇所はどこでしょうか?
Responder a #45041

Responder a #45098×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) Login

RE: Subversion でのソースコード管理を始めました (2009-07-28 11:50 by h.k #45170)

アドバイスありがとうございました。
存在しないファイルをプロジェクトから除外して、
・print.cpp
・bookmark-dialog.cpp
を、ビルドしないように設定しました。
今は、manu.cpp に2種類のエラーが発生します。

menu.cpp(281) : error C2664:
'`anonymous-namespace'::Menu::setItem' : 2 番目の引数を 'manah::win32::AutoZeroSize<Structure>' から
'const manah::win32::AutoZeroSize<Structure> &' に変換できません。
この変換を実行可能なユーザー定義変換演算子がないか、または演算子を呼び出せません。


menu.cpp(341) : error C2664:
'SetMenuItemInfoW' : 4 番目の引数を 'const manah::win32::AutoZeroSize<Structure> *__w64 ' から
'LPCMENUITEMINFOW' に変換できません。
指示された型は関連がありません。変換には reinterpret_cast、C スタイル キャストまたは関数スタイルのキャストが必要です。
Responder a #45098

Responder a #45170×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) Login

RE: Subversion でのソースコード管理を始めました (2009-07-30 02:04 by exeal #45206)

ご報告ありがとうございました。
誤りを修正して rev. 271 でコミットしました。
Responder a #27501

Responder a #45206×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) Login

RE: Subversion でのソースコード管理を始めました (2009-07-30 10:54 by h.k #45208)

ありがとうございました。ビルドが通りました。
(でも実行はできませんでした。)

[boost のビルド]
bjam --build-type=complete --toolset=msvc --with-python stage
bjam --build-type=complete --toolset=msvc --with-regex stage

[python の環境]
PYTHON_ROOT C:/Python26
PYTHON_VERSION 2.6

---

char dotAlpha[MAX_PATH];
::GetModuleFileNameA(0, dotAlpha, MAX_PATH);
char* fileName = ::PathFindFileNameA(dotAlpha);
strcpy(fileName, ".alpha");
try {
ambient::Interpreter::instance().executeFile(dotAlpha); //エラー(?)
} catch(const boost::python::error_already_set&) {
ambient::Interpreter::instance().handleException();
}

---

ビルドが通ったので満足です。
Responder a #45206

Responder a #45208×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) Login