https://developer.android.com/codelabs/making-waves-1-synth?hl=ja#3
上記のサイトを進めております。
Native C++のプロジェクトを作った直後です。
サイト内の記述に従い、Oscillatorクラス(C++)を作った後、CMakeLists.txtの最後尾にadd_library(...existing source filenames...
src/main/cpp/Oscillator.cpp)
を入れてRunをしたら下のようなエラーメッセージが返ってきました解決するにはどうすればよいでしょうか。
"(errormsg)
C:\Users\yusuk\Documents\pianoapp\WaveMaker3\app\src\main\cpp\CMakeLists.txt : C/C++ debug|x86 : CMake Error at C:\Users\yusuk\Documents\pianoapp\WaveMaker3\app\src\main\cpp\CMakeLists.txt:50 (add_library):
Cannot find source file:
source
Tried extensions .c .C .c++ .cc .cpp .cxx .m .M .mm .h .hh .h++ .hm .hpp
.hxx .in .txx
Affected Modules: app
"
”(サイト内の記述)
Add the C++ source file to the build by adding the following lines to CMakeLists.txt. It can be found under the External Build Files section of the Project window.
add_library(...existing source filenames...
src/main/cpp/Oscillator.cpp)
”
回答1件
あなたの回答
tips
プレビュー