Removed .gitattributes file & updated formatting in CMakeLists.txt

This commit is contained in:
Patrix
2021-08-28 05:03:24 +02:00
parent fe8920d958
commit b564e77f09
2 changed files with 14 additions and 75 deletions

View File

@@ -1,15 +1,17 @@
set(SQUIRREL_SRC sqapi.cpp
sqbaselib.cpp
sqclass.cpp
sqcompiler.cpp
sqdebug.cpp
sqfuncstate.cpp
sqlexer.cpp
sqmem.cpp
sqobject.cpp
sqstate.cpp
sqtable.cpp
sqvm.cpp)
set(SQUIRREL_SRC
sqapi.cpp
sqbaselib.cpp
sqclass.cpp
sqcompiler.cpp
sqdebug.cpp
sqfuncstate.cpp
sqlexer.cpp
sqmem.cpp
sqobject.cpp
sqstate.cpp
sqtable.cpp
sqvm.cpp
)
add_library(squirrel_static STATIC ${SQUIRREL_SRC})