aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Wagner <david.wagner@intel.com>2014-02-20 10:39:26 +0100
committerDavid Wagner <david.wagner@intel.com>2014-02-20 10:39:26 +0100
commitfefdd77a3b254bbe3e566c4592816d37720a58c9 (patch)
treec495163bbc7c7a516457af1bc5e85d064bc30aa5
parent3b0dd7b6366ea6e3dc252c347afb58756e007ebb (diff)
downloadexternal_parameter-framework-fefdd77a3b254bbe3e566c4592816d37720a58c9.zip
external_parameter-framework-fefdd77a3b254bbe3e566c4592816d37720a58c9.tar.gz
external_parameter-framework-fefdd77a3b254bbe3e566c4592816d37720a58c9.tar.bz2
CMake: remove WIN32 comments
At the time of writing the makefiles, it wasn't clear what this argument was for. According to the documentation, it is only useful for GUI applications on windows. test-platform and remote-process are command-line tools and this does not apply. Signed-off-by: David Wagner <david.wagner@intel.com>
-rw-r--r--remote-process/CMakeLists.txt2
-rw-r--r--test/test-platform/CMakeLists.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/remote-process/CMakeLists.txt b/remote-process/CMakeLists.txt
index 0cf477a..d5bda0a 100644
--- a/remote-process/CMakeLists.txt
+++ b/remote-process/CMakeLists.txt
@@ -1,4 +1,4 @@
-add_executable(remote-process main.cpp) # TODO: WIN32 ?
+add_executable(remote-process main.cpp)
# TODO: separate remote-processor's includes in half (public/private)
# And use only public headers here
diff --git a/test/test-platform/CMakeLists.txt b/test/test-platform/CMakeLists.txt
index c379171..f173c7b 100644
--- a/test/test-platform/CMakeLists.txt
+++ b/test/test-platform/CMakeLists.txt
@@ -1,4 +1,4 @@
-add_executable(test-platform # WIN32 ?
+add_executable(test-platform
main.cpp
TestPlatform.cpp)