27 lines
551 B
CMake
27 lines
551 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(CTL)
|
|
|
|
add_subdirectory(CC_SDK)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
add_executable(CTL
|
|
WIN32
|
|
main.cpp
|
|
Server/Server.h
|
|
Server/Server.cpp
|
|
Server/AsideFile/AsideFile.hpp
|
|
Server/AsideFile/AsideFileClass.h
|
|
UI/MainWindow.cpp
|
|
UI/MainWindow.h
|
|
RES/App.rc
|
|
Test/Test.cpp
|
|
Test/Test.h
|
|
Test/Test2.cpp
|
|
Test/Test2.h
|
|
)
|
|
target_include_directories(CTL PUBLIC ${CC_API_INC})
|
|
|
|
target_link_libraries(CTL PUBLIC CC_API ${LIB_WX_D})
|