hyprlang/CMakeLists.txt

30 lines
787 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.19)
project(hyprlang
VERSION "0.1"
DESCRIPTION "A library to parse hypr config files"
)
include(CTest)
set(CMAKE_CXX_STANDARD 23)
file(GLOB_RECURSE SRCFILES CONFIGURE_DEPENDS "src/*.cpp" "include/hyprlang.hpp")
2023-12-28 21:26:25 +01:00
add_library(hyprlang SHARED ${SRCFILES})
target_include_directories( hyprlang
PUBLIC "./include"
PRIVATE "./src"
)
2023-12-29 20:04:23 +01:00
set_target_properties(hyprlang PROPERTIES PUBLIC_HEADER include/hyprlang.hpp)
2023-12-28 22:11:27 +01:00
install(TARGETS hyprlang)
add_executable(hyprlang_test "tests/main.cpp")
target_link_libraries(hyprlang_test PRIVATE hyprlang)
2023-12-28 22:11:27 +01:00
add_test(NAME "Parsing" WORKING_DIRECTORY "../tests/" COMMAND hyprlang_test "parse")
2023-12-29 20:04:23 +01:00
# Installation
install(TARGETS hyprlang
PUBLIC_HEADER DESTINATION include
LIBRARY DESTINATION lib)