mirror of
https://github.com/build-cpp/cmkr
synced 2026-06-08 13:22:55 +00:00
16 lines
281 B
C++
16 lines
281 B
C++
#pragma once
|
|
|
|
namespace cmkr {
|
|
namespace gen {
|
|
|
|
int generate_project(const char *typ);
|
|
|
|
int generate_cmake(const char *path, bool root = true);
|
|
|
|
} // namespace gen
|
|
} // namespace cmkr
|
|
|
|
int cmkr_gen_generate_project(const char *typ);
|
|
|
|
int cmkr_gen_generate_cmake(const char *path);
|