Updated gitignore with new log file rules

This commit is contained in:
2025-08-09 22:39:44 +01:00
parent f9fb455ba9
commit 1be4e74dd5
4 changed files with 9 additions and 9 deletions

2
.gitignore vendored
View File

@@ -14,4 +14,4 @@ build/
*.pdb
# Ignores the log output file of the .exe #
LXC.log
*.log

View File

@@ -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)

BIN
PashaBibko-UTIL-Example Executable file

Binary file not shown.

2
external/util vendored