Skip to content

Commit 3e0c9a3

Browse files
Don't mark project as CXX or try_compile will fail on some cmake versions. (#70)
1 parent b15c076 commit 3e0c9a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ if (BUILD_DEPS)
7474
#we don't want happening until we're done with the above code.
7575
list(APPEND CMAKE_PREFIX_PATH "${AWS_DEPS_INSTALL_DIR}")
7676

77-
project(aws-iot-device-sdk-cpp-v2 CXX)
77+
project(aws-iot-device-sdk-cpp-v2)
7878

7979
else()
8080
#the following two lines are done in this branch intentionally, don't move it. project() does some magic that
8181
#we want happening exactly right now.
82-
project(aws-iot-device-sdk-cpp-v2 CXX)
82+
project(aws-iot-device-sdk-cpp-v2)
8383

8484
endif()
8585

0 commit comments

Comments
 (0)