From 1499d05f62d514053ffe0c8045233df0a6cfb8dc Mon Sep 17 00:00:00 2001 From: Keith Francois <francois.keith@gmail.com> Date: Wed, 6 Jul 2011 11:27:32 +0200 Subject: [PATCH] Correct the handling of python modules Remove the command MAKE_DIRECTORY that has been moved in python.cmake --- CMakeLists.txt | 3 --- src/CMakeLists.txt | 2 -- 2 files changed, 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index de60e02..34b4f12 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,9 +34,6 @@ SET(${PROJECT_NAME}_HEADERS ) -# Defines paths. -SET(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/lib) - SETUP_PROJECT() # Trigger dependency to dynamic-graph. diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 718c5b3..4c445e5 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -115,7 +115,6 @@ EXEC_PROGRAM("${PKG_CONFIG_EXECUTABLE}" OUTPUT_VARIABLE "DYNAMIC_GRAPH_PLUGIN_DIR") # Tracer plugin -file(MAKE_DIRECTORY ../lib/dynamic_graph/tracer) IF(WIN32) SET(TRACER_PLUGIN ${DYNAMIC_GRAPH_PLUGIN_DIR}/tracer${CMAKE_STATIC_LIBRARY_SUFFIX}) ELSE(WIN32) @@ -124,7 +123,6 @@ ENDIF(WIN32) DYNAMIC_GRAPH_PYTHON_MODULE("tracer" ${TRACER_PLUGIN} tracer-wrap) # TracerRealTime plugin -file(MAKE_DIRECTORY ../lib/dynamic_graph/tracer_real_time) IF(WIN32) SET(TRACERREALTIME_PLUGIN ${DYNAMIC_GRAPH_PLUGIN_DIR}/tracer-real-time${CMAKE_STATIC_LIBRARY_SUFFIX}) ELSE(WIN32) -- GitLab