Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
cmake でプロジェクトを作成しており、テストを追加したいと考えています。cmakeを使うのはこれが初めてなので、暗闇の中を歩いています。この手順を開始する方法の例、または私が見ることができるオープンソースプロジェクトはありますか?
どうも
Just add this lines to your CMakeLists.txt
enable_testing() add_executable(exec_name exec_source_file) add_test(test_name exec_name)