diff options
author | Jan200101 <sentrycraft123@gmail.com> | 2020-11-23 18:50:24 +0100 |
---|---|---|
committer | Jan200101 <sentrycraft123@gmail.com> | 2020-11-23 18:50:24 +0100 |
commit | 9c01e06c2a1805953f1f34f4e0cfe2b883e1afbb (patch) | |
tree | 9da14ccb3513104659f10ca59c33531b4e92b8ae | |
parent | 42a0a0c0488ed38cc60ee8d4b006a42ed1e4dc95 (diff) | |
download | polecat-9c01e06c2a1805953f1f34f4e0cfe2b883e1afbb.tar.gz polecat-9c01e06c2a1805953f1f34f4e0cfe2b883e1afbb.zip |
specify language
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 03c1817..34f4763 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ if(NOT CMAKE_BUILD_TYPE) "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel." FORCE) endif() -project(polecat VERSION 0.1.9) +project(polecat VERSION 0.1.9 LANGUAGES C) add_compile_definitions(NAME="${CMAKE_PROJECT_NAME}") add_compile_definitions(VERSION="${CMAKE_PROJECT_VERSION}") @@ -39,4 +39,4 @@ target_include_directories(${CMAKE_PROJECT_NAME} PUBLIC ${LIBCURL_INCLUDE_DIRS}) target_include_directories(${CMAKE_PROJECT_NAME} PUBLIC ${JSONC_INCLUDE_DIRS}) target_include_directories(${CMAKE_PROJECT_NAME} PUBLIC ${LIBARCHIVE_INCLUDE_DIRS}) -install(TARGETS ${CMAKE_PROJECT_NAME})
\ No newline at end of file +install(TARGETS ${CMAKE_PROJECT_NAME}) |