You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cmkr/src/gen.h

22 lines
311 B

#pragma once
#ifdef __cplusplus
namespace cmkr::gen {
void generate_project(const char *typ);
void generate_cmake(const char *path);
} // namespace cmkr::gen
extern "C" {
#endif
void cmkr_gen_generate_project(const char *typ);
void cmkr_gen_generate_cmake(const char *path);
#ifdef __cplusplus
}
#endif