mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-22 20:57:12 +01:00
11 lines
305 B
CMake
11 lines
305 B
CMake
|
# Create the VCMP library
|
||
|
add_library(VCMP INTERFACE)
|
||
|
# Library includes
|
||
|
target_include_directories(VCMP INTERFACE ${CMAKE_CURRENT_LIST_DIR})
|
||
|
# Add it's sources
|
||
|
target_sources(VCMP INTERFACE
|
||
|
${CMAKE_CURRENT_SOURCE_DIR}/vcmp.h
|
||
|
${CMAKE_CURRENT_SOURCE_DIR}/vcmp20.h
|
||
|
${CMAKE_CURRENT_SOURCE_DIR}/vcmp21.h
|
||
|
)
|