Skip to content

Commit

Permalink
languages cxx in main cmakelists
Browse files Browse the repository at this point in the history
  • Loading branch information
niyatim23 committed Nov 17, 2023
1 parent 0a9e234 commit b035bd0
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CMake/Dependencies/libautoconf-CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.6.3)

project(libautoconf-download LANGUAGES NONE)
project(libautoconf-download LANGUAGES CXX)

find_program(MAKE_EXE NAMES make)

Expand Down
2 changes: 1 addition & 1 deletion CMake/Dependencies/libautomake-CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.6.3)

project(libautomake-download LANGUAGES NONE)
project(libautomake-download LANGUAGES CXX)

find_program(MAKE_EXE NAMES make)

Expand Down
2 changes: 1 addition & 1 deletion CMake/Dependencies/libcurl-CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.6.3)

project(libcurl-download LANGUAGES NONE)
project(libcurl-download LANGUAGES CXX)

find_program(MAKE_EXE NAMES make)

Expand Down
2 changes: 1 addition & 1 deletion CMake/Dependencies/libgtest-CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.6.3)

project(libgtest-download LANGUAGES NONE)
project(libgtest-download LANGUAGES CXX)

include(ExternalProject)

Expand Down
2 changes: 1 addition & 1 deletion CMake/Dependencies/libjsmn-CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.6.3)

project(libjsmn-download LANGUAGES NONE)
project(libjsmn-download LANGUAGES CXX)

include(ExternalProject)
ExternalProject_Add(project_libjsmn
Expand Down
2 changes: 1 addition & 1 deletion CMake/Dependencies/libkvscproducer-CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.6.3)

project(libkvscproducer-download LANGUAGES NONE)
project(libkvscproducer-download LANGUAGES CXX)

include(ExternalProject)

Expand Down
2 changes: 1 addition & 1 deletion CMake/Dependencies/liblog4cplus-CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.6.3)
find_program(MAKE_EXE NAMES make)

project(log4cplus-download LANGUAGES NONE)
project(log4cplus-download LANGUAGES CXX)

set(BUILD_SHARED_LIBS 1)
if (BUILD_STATIC)
Expand Down
2 changes: 1 addition & 1 deletion CMake/Dependencies/libopenssl-CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.6.3)

project(libopenssl-download LANGUAGES NONE)
project(libopenssl-download LANGUAGES CXX)

if (WIN32)
find_program(MAKE_EXE NAMES nmake)
Expand Down
2 changes: 1 addition & 1 deletion tst/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.6.3)
project(producerTest)
project(producerTest LANGUAGES CXX)

file(GLOB PRODUCER_TEST_SOURCES *.cpp)

Expand Down

0 comments on commit b035bd0

Please sign in to comment.