summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-01-20 21:26:32 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-01-21 20:56:30 +0000
commit033965b8ccada5f247a68ac92da23a73a37d9d90 (patch)
treeb78269ea5ce534b0898a0ded9f33a2de179a8549 /cmake
parent52778aed9391538287874b1f027994cef15b10d4 (diff)
Make the monolith test a C++ binary.
This way, developers compile toxcore, toxav, and toxencryptsave as C++ at least once at home, reducing the likelyhood of running into travis failures where we compile as C++ in the windows build.
Diffstat (limited to 'cmake')
-rw-r--r--cmake/ModulePackage.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/ModulePackage.cmake b/cmake/ModulePackage.cmake
index 35f6f2a7..8867fc45 100644
--- a/cmake/ModulePackage.cmake
+++ b/cmake/ModulePackage.cmake
@@ -28,7 +28,7 @@ macro(set_source_language)
28 endif() 28 endif()
29endmacro() 29endmacro()
30 30
31function(add_c_executable exec) 31function(add_binary exec)
32 set_source_language(${ARGN}) 32 set_source_language(${ARGN})
33 33
34 add_executable(${exec} ${ARGN}) 34 add_executable(${exec} ${ARGN})