diff --git a/include/literals.hpp b/include/literals.hpp index af2a56e..89dfa66 100644 --- a/include/literals.hpp +++ b/include/literals.hpp @@ -31,7 +31,6 @@ version = "0.1.0" # [options] [target.%s] -name = "%s" type = "%s" sources = ["src/*.cpp"] include-directories = ["include"] diff --git a/src/gen.cpp b/src/gen.cpp index 5633bf8..be67b55 100644 --- a/src/gen.cpp +++ b/src/gen.cpp @@ -113,7 +113,7 @@ int generate_project(const char *str) { "! Supported types are: executable, library, shared, static, interface"); } - const auto tomlbuf = format(cmake_toml, dir_name.c_str(), dir_name.c_str(), dir_name.c_str(), str, installed.c_str(), target.c_str(), dest.c_str()); + const auto tomlbuf = format(cmake_toml, dir_name.c_str(), dir_name.c_str(), str, installed.c_str(), target.c_str(), dest.c_str()); if (strcmp(str, "interface")) { std::ofstream ofs("src/main.cpp");