Updated gitignore with new log file rules
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -14,4 +14,4 @@ build/
|
|||||||
*.pdb
|
*.pdb
|
||||||
|
|
||||||
# Ignores the log output file of the .exe #
|
# Ignores the log output file of the .exe #
|
||||||
LXC.log
|
*.log
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
# Creates the .exe from the single source file of the app #
|
# 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 #
|
# Links to the all needed internal libraries #
|
||||||
target_link_libraries(LXC PRIVATE PashaBibko-UTIL)
|
target_link_libraries(lxc PRIVATE PashaBibko-UTIL)
|
||||||
target_link_libraries(LXC PRIVATE Lexer)
|
target_link_libraries(lxc PRIVATE Lexer)
|
||||||
target_link_libraries(LXC PRIVATE AST)
|
target_link_libraries(lxc PRIVATE AST)
|
||||||
target_link_libraries(LXC PRIVATE Parser)
|
target_link_libraries(lxc PRIVATE Parser)
|
||||||
|
|
||||||
# Creates the precompiled header for the binary #
|
# Creates the precompiled header for the binary #
|
||||||
target_include_directories(LXC PRIVATE ${CMAKE_SOURCE_DIR}/external/util)
|
target_include_directories(lxc PRIVATE ${CMAKE_SOURCE_DIR}/external/util)
|
||||||
target_precompile_headers(LXC PRIVATE ${CMAKE_SOURCE_DIR}/external/util/Util.h)
|
target_precompile_headers(lxc PRIVATE ${CMAKE_SOURCE_DIR}/external/util/Util.h)
|
||||||
|
|||||||
BIN
PashaBibko-UTIL-Example
Executable file
BIN
PashaBibko-UTIL-Example
Executable file
Binary file not shown.
2
external/util
vendored
2
external/util
vendored
Submodule external/util updated: a5b7282bfa...d4b999676d
Reference in New Issue
Block a user