mirror of https://github.com/AxioDL/kabufuda.git
Merge pull request #3 from lioncash/cmake
CMakeLists: Use target_sources instead of a variable
This commit is contained in:
commit
f57d8cf761
|
@ -7,13 +7,6 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|||
unset(KABUFUDA_INCLUDE_DIR CACHE)
|
||||
#set(KABUFUDA_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/include CACHE PATH "kabufuda include path" FORCE)
|
||||
|
||||
unset(PLAT_SRCS)
|
||||
if(WIN32)
|
||||
list(APPEND PLAT_SRCS include/kabufuda/winsupport.hpp lib/kabufuda/AsyncIOWin32.cpp)
|
||||
else()
|
||||
list(APPEND PLAT_SRCS lib/kabufuda/AsyncIOPosix.cpp)
|
||||
endif()
|
||||
|
||||
add_library(kabufuda STATIC
|
||||
include/kabufuda/Constants.hpp
|
||||
include/kabufuda/AsyncIO.hpp
|
||||
|
@ -24,7 +17,19 @@ add_library(kabufuda STATIC
|
|||
include/kabufuda/Util.hpp lib/kabufuda/Util.cpp
|
||||
include/kabufuda/SRAM.hpp lib/kabufuda/SRAM.cpp
|
||||
include/kabufuda/WideStringConvert.hpp lib/kabufuda/WideStringConvert.cpp
|
||||
${PLAT_SRCS})
|
||||
)
|
||||
|
||||
if(WIN32)
|
||||
target_sources(kabufuda PRIVATE
|
||||
include/kabufuda/winsupport.hpp
|
||||
lib/kabufuda/AsyncIOWin32.cpp
|
||||
)
|
||||
else()
|
||||
target_sources(kabufuda PRIVATE
|
||||
lib/kabufuda/AsyncIOPosix.cpp
|
||||
)
|
||||
endif()
|
||||
|
||||
target_include_directories(kabufuda PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>)
|
||||
|
||||
add_subdirectory(test)
|
||||
|
|
Loading…
Reference in New Issue