我正在使用CMake 3.9.1,并且已经将我的项目RUNTIME_OUTPUT_DIRECTORY更改为另一个文件夹。
但是,我想更改hlsl文件(cso)的输出。
答案 0 :(得分:0)
以下适用于CMAKE 3.9.1 visual studio的作品
public class CodSecreen extends AppCompatActivity {
PDFView pdfView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_cod_secreen);
pdfView=(PDFView)findViewById(R.id.pdf);
Intent intent = getIntent();
String str = intent.getStringExtra("message");
if (str.equals(getResources().getString(R.string.introduction))){
pdfView.fromAsset("phpvariable.pdf").load();
}
}
}
它将在Visual Studio构建项目后立即在执行之前运行.bat!