Skip to content

Commit

Permalink
build: change c build to c++ build
Browse files Browse the repository at this point in the history
  • Loading branch information
csirianni committed Oct 10, 2023
1 parent 537c759 commit 899e58c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.15)
project(compressor C)
project(compressor)

find_package(ZLIB REQUIRED)

add_executable(${PROJECT_NAME} src/main.c)
add_executable(${PROJECT_NAME} src/main.cpp)
target_link_libraries(${PROJECT_NAME} ZLIB::ZLIB)
File renamed without changes.

0 comments on commit 899e58c

Please sign in to comment.