You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
262 B
C++

#pragma once
#include <iostream>
// 使用CMake定义的模块名
#ifndef PROGRAM_MODULE
#define PROGRAM_MODULE "DefaultApp"
#endif
// 使用CMake设置的模块名
#define DEBUG(...) std::cout << "[" << PROGRAM_MODULE << "] " << __VA_ARGS__ << std::endl