mirror of
https://github.com/build-cpp/cmkr
synced 2026-06-08 13:22:55 +00:00
18 lines
343 B
C++
18 lines
343 B
C++
#pragma once
|
|
|
|
#include "project_parser.hpp"
|
|
|
|
namespace cmkr {
|
|
namespace gen {
|
|
|
|
int generate_project(const char *typ);
|
|
|
|
int generate_cmake(const char *path, const parser::Project *parent_project = nullptr);
|
|
|
|
} // namespace gen
|
|
} // namespace cmkr
|
|
|
|
int cmkr_gen_generate_project(const char *typ);
|
|
|
|
int cmkr_gen_generate_cmake(const char *path);
|