diff options
author | John Starks <jostarks@microsoft.com> | 2017-11-10 02:58:10 -0800 |
---|---|---|
committer | Sergei Nikulov <snikulov@users.noreply.github.com> | 2017-11-10 13:58:10 +0300 |
commit | 2671f5f7cfc2bdd061823858e2d6d7ac2f0747a4 (patch) | |
tree | fd6015873b8ae3e3e3b6b43283870e7c7bf15685 /src | |
parent | f405133ad594ca9d4219961a5bb366ca16911bc5 (diff) | |
download | curl-2671f5f7cfc2bdd061823858e2d6d7ac2f0747a4.tar.gz |
cmake: Correctly include curl.rc in Windows builds (#2064)
Update CMakeLists.txt to add curl.rc to the correct list.
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 085c150e2..30c525c44 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -40,7 +40,7 @@ transform_makefile_inc("Makefile.inc" "${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc. include(${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake) if(MSVC) - list(APPEND CURL_SOURCE curl.rc) + list(APPEND CURL_FILES curl.rc) endif() # CURL_FILES comes from Makefile.inc |