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
277 B
C++

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