summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Schmelzer2011-02-24 17:21:42 +0100
committerSebastian Schmelzer2011-02-24 17:21:42 +0100
commit12dd7b22fa8a83de4baab6860f151ecf2d6f029c (patch)
tree4b972103a8def4603dc27c44104edd55e6c6743f
parentadd warnings for unused, unreachable code (diff)
downloadpvs-12dd7b22fa8a83de4baab6860f151ecf2d6f029c.tar.gz
pvs-12dd7b22fa8a83de4baab6860f151ecf2d6f029c.tar.xz
pvs-12dd7b22fa8a83de4baab6860f151ecf2d6f029c.zip
fix cmake paths
-rw-r--r--3rdparty/CMakeLists.txt2
-rw-r--r--CMakeLists.txt6
-rw-r--r--src/net/mcast/CMakeLists.txt2
3 files changed, 5 insertions, 5 deletions
diff --git a/3rdparty/CMakeLists.txt b/3rdparty/CMakeLists.txt
index e7676b6..4d7b2d7 100644
--- a/3rdparty/CMakeLists.txt
+++ b/3rdparty/CMakeLists.txt
@@ -2,7 +2,7 @@
# Build OpenPGM
################################################################################
-INCLUDE(../OpenPGMConfig.cmake)
+INCLUDE( OpenPGMConfig )
ADD_DEFINITIONS(${LIBPGM_CFLAGS})
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4f8aa11..76d0d11 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -437,12 +437,12 @@ ENDIF(WIN32)
# add uninstall target to our makefile
CONFIGURE_FILE(
- "${CMAKE_CURRENT_SOURCE_DIR}/Uninstall.cmake"
- "${CMAKE_CURRENT_BINARY_DIR}/Uninstall.cmake"
+ "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Uninstall.cmake"
+ "${CMAKE_CURRENT_BINARY_DIR}/cmake/Uninstall.cmake"
IMMEDIATE @ONLY
)
ADD_CUSTOM_TARGET( uninstall
- "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/Uninstall.cmake"
+ "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake/Uninstall.cmake"
)
# add package target to our makefile
diff --git a/src/net/mcast/CMakeLists.txt b/src/net/mcast/CMakeLists.txt
index e92b090..74c8a54 100644
--- a/src/net/mcast/CMakeLists.txt
+++ b/src/net/mcast/CMakeLists.txt
@@ -1,4 +1,4 @@
-INCLUDE(../../../OpenPGMConfig.cmake)
+INCLUDE( OpenPGMConfig )
ADD_DEFINITIONS(
${LIBPGM_CXXFLAGS}