diff --git a/.gitignore b/.gitignore index 35433ba..decae41 100644 --- a/.gitignore +++ b/.gitignore @@ -14,4 +14,4 @@ build/ *.pdb # Ignores the log output file of the .exe # -LXC.log +*.log diff --git a/LXC/CMakeLists.txt b/LXC/CMakeLists.txt index 426df70..1a1bc19 100644 --- a/LXC/CMakeLists.txt +++ b/LXC/CMakeLists.txt @@ -1,12 +1,12 @@ # Creates the .exe from the single source file of the app # -add_executable(LXC LXC.cpp) +add_executable(lxc LXC.cpp) # Links to the all needed internal libraries # -target_link_libraries(LXC PRIVATE PashaBibko-UTIL) -target_link_libraries(LXC PRIVATE Lexer) -target_link_libraries(LXC PRIVATE AST) -target_link_libraries(LXC PRIVATE Parser) +target_link_libraries(lxc PRIVATE PashaBibko-UTIL) +target_link_libraries(lxc PRIVATE Lexer) +target_link_libraries(lxc PRIVATE AST) +target_link_libraries(lxc PRIVATE Parser) # Creates the precompiled header for the binary # -target_include_directories(LXC PRIVATE ${CMAKE_SOURCE_DIR}/external/util) -target_precompile_headers(LXC PRIVATE ${CMAKE_SOURCE_DIR}/external/util/Util.h) +target_include_directories(lxc PRIVATE ${CMAKE_SOURCE_DIR}/external/util) +target_precompile_headers(lxc PRIVATE ${CMAKE_SOURCE_DIR}/external/util/Util.h) diff --git a/PashaBibko-UTIL-Example b/PashaBibko-UTIL-Example new file mode 100755 index 0000000..6b8680c Binary files /dev/null and b/PashaBibko-UTIL-Example differ diff --git a/external/util b/external/util index a5b7282..d4b9996 160000 --- a/external/util +++ b/external/util @@ -1 +1 @@ -Subproject commit a5b7282bfab694731b31616de536014477442e13 +Subproject commit d4b999676de284972fed3f5a07a33c166ccf8602