Removed CMakeLists.txt
This commit is contained in:
parent
ee6524c2e6
commit
b44ba0ff36
4 changed files with 0 additions and 34 deletions
|
|
@ -1,7 +0,0 @@
|
||||||
cmake_minimum_required(VERSION 3.20)
|
|
||||||
project(mcc VERSION 1.0.0 LANGUAGES CXX)
|
|
||||||
|
|
||||||
set(CMAKE_CXX_STANDARD 17)
|
|
||||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
||||||
|
|
||||||
add_subdirectory(src)
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
add_subdirectory(Core)
|
|
||||||
add_subdirectory(Network)
|
|
||||||
|
|
||||||
add_executable(mcc main.cpp)
|
|
||||||
|
|
||||||
target_link_libraries(mcc
|
|
||||||
PRIVATE
|
|
||||||
Core
|
|
||||||
Network
|
|
||||||
)
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
add_library(Core STATIC
|
|
||||||
Logger.cpp
|
|
||||||
Logger.hpp
|
|
||||||
)
|
|
||||||
|
|
||||||
target_include_directories(Core PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
add_library(Network STATIC
|
|
||||||
Socket.cpp
|
|
||||||
Socket.hpp
|
|
||||||
)
|
|
||||||
|
|
||||||
target_include_directories(Network PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
|
||||||
|
|
||||||
# If on Windows, link against Winsock
|
|
||||||
if(WIN32)
|
|
||||||
target_link_libraries(Network PUBLIC ws2_32)
|
|
||||||
endif()
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue