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
307 B

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