XNSim/XNInterfaceGenServer/CMakeListsGen.h

17 lines
366 B
C
Raw Normal View History

#pragma once
#include "PublicDefine.h"
class CMakeListsGen
{
public:
/**
* @brief CMakeLists.txt文件
* @return
*/
static bool generateCMakeLists(const AllInterfaceData &interfaceData,
const std::string &idlPath, const std::string &configName);
private:
static std::string toUpper(const std::string &str);
};