lzokay/CMakeLists.txt

6 lines
260 B
CMake

cmake_minimum_required(VERSION 3.10)
project(lzokay)
add_library(lzokay lzokay.hpp lzokay.cpp)
add_executable(lzokaytest test.cpp)
target_include_directories(lzokay PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>)
target_link_libraries(lzokaytest lzokay)