Starting and testing cmake as a toolchain
This commit is contained in:
14
CoreLib/CMakeLists.txt
Normal file
14
CoreLib/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
project(CoreLib LANGUAGES CXX)
|
||||
|
||||
set(SOURCES
|
||||
ctype.cpp
|
||||
Memory.cpp
|
||||
Path.cpp
|
||||
Stack.cpp
|
||||
String.cpp
|
||||
StringView.cpp
|
||||
)
|
||||
|
||||
add_library(CoreLib STATIC ${SOURCES})
|
||||
|
||||
target_include_directories(CoreLib PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include)
|
||||
Reference in New Issue
Block a user