Includes BlogParser files in cmakelists
This commit is contained in:
parent
d19c822764
commit
65aefe46ce
31 changed files with 1569 additions and 34 deletions
|
@ -1,4 +1,4 @@
|
|||
add_executable(blogParser blog.cpp)
|
||||
add_executable(blogParser blog.cpp BlogParser.h BlogParser.cpp)
|
||||
target_include_directories(blogParser PRIVATE Src)
|
||||
|
||||
add_subdirectory(Libs)
|
||||
|
|
|
@ -5,8 +5,6 @@ int main()
|
|||
{
|
||||
BlogParser* parser = new BlogParser();
|
||||
|
||||
std::string in = "../../inputfile.md";
|
||||
std::string out = "../../outputfile.html";
|
||||
parser->parse(in, out);
|
||||
parser->parse("../../inputfile.md", "../../outputfile.html");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue