From 4460f6cf4b0227449aa1035f739994dbee227466 Mon Sep 17 00:00:00 2001 From: Pavlo Ivashkov Date: Mon, 28 Oct 2024 14:04:02 +0200 Subject: [PATCH] wip --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 03fdcf7..94a3f84 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.15) -find_package(ICU COMPONENTS uc i18n) - project(uklatn LANGUAGES C) include(CTest) +find_package(ICU REQUIRED COMPONENTS uc i18n) + add_library(uklatn c/uklatn.c) target_include_directories(uklatn PUBLIC c/include ${ICU_INCLUDE_DIRS}) target_link_libraries(uklatn ${ICU_LIBRARIES})