mirror of
https://github.com/ttttupup/wxhelper.git
synced 2024-11-05 18:09:24 +08:00
15 lines
431 B
CMake
15 lines
431 B
CMake
cmake_minimum_required(VERSION 3.10...3.27)
|
|
aux_source_directory(./src BASE_SOURCE)
|
|
aux_source_directory(./src/include BASE_HEADER_SOURCE)
|
|
|
|
add_library(base ${BASE_SOURCE} ${BASE_HEADER_SOURCE})
|
|
|
|
target_include_directories(base PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/src/include)
|
|
|
|
|
|
#target_include_directories(base PUBLIC C:/other/codeSource/windows/wxhelper/app/base/src/include)
|
|
|
|
#install(TARGETS base LIBRARY DESTINATION base)
|
|
|
|
|