mirror of
https://github.com/build-cpp/cmkr
synced 2026-06-08 13:22:55 +00:00
14 lines
256 B
C++
14 lines
256 B
C++
#pragma once
|
|
|
|
#include "project_parser.hpp"
|
|
|
|
namespace cmkr {
|
|
namespace gen {
|
|
|
|
void generate_project(const std::string &type);
|
|
|
|
void generate_cmake(const char *path, const parser::Project *parent_project = nullptr);
|
|
|
|
} // namespace gen
|
|
} // namespace cmkr
|