aboutsummaryrefslogtreecommitdiff
path: root/devtools
diff options
context:
space:
mode:
authorBastien Bouclet2016-09-03 07:58:35 +0200
committerBastien Bouclet2016-09-03 07:58:35 +0200
commitcda41d2fb4cf45b43358ac3a6848575efb8202de (patch)
tree7ec831d1f6f9dee2b567a3382710951c37884c63 /devtools
parent25bf68c39a634e001efb03b556ac9e71b12d07f8 (diff)
downloadscummvm-rg350-cda41d2fb4cf45b43358ac3a6848575efb8202de.tar.gz
scummvm-rg350-cda41d2fb4cf45b43358ac3a6848575efb8202de.tar.bz2
scummvm-rg350-cda41d2fb4cf45b43358ac3a6848575efb8202de.zip
CREATE_PROJECT: Add CURL and SDL_net to the list of libraries for cmake generation
Diffstat (limited to 'devtools')
-rw-r--r--devtools/create_project/cmake.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/devtools/create_project/cmake.cpp b/devtools/create_project/cmake.cpp
index 1423e686be..fad9a28367 100644
--- a/devtools/create_project/cmake.cpp
+++ b/devtools/create_project/cmake.cpp
@@ -48,7 +48,9 @@ const CMakeProvider::Library *CMakeProvider::getLibraryFromFeature(const char *f
{ "vorbis", 0, 0, 0, 0, "vorbisfile vorbis ogg" },
{ "theora", 0, 0, 0, 0, "theoradec" },
{ "fluidsynth",0, 0, 0, 0, "fluidsynth" },
- { "faad", 0, 0, 0, 0, "faad" }
+ { "faad", 0, 0, 0, 0, "faad" },
+ { "libcurl", "FindCURL", "CURL", "CURL_INCLUDE_DIRS", "CURL_LIBRARIES", 0 },
+ { "sdlnet", "FindSDL_net", "SDL_net", "SDL_NET_INCLUDE_DIRS", "SDL_NET_LIBRARIES", 0 }
};
for (unsigned int i = 0; i < sizeof(s_libraries) / sizeof(s_libraries[0]); i++) {