|
|
@@ -50,16 +50,15 @@ if (WIN32)
|
|
|
else ()
|
|
|
set (OBJ_EXT .o)
|
|
|
endif ()
|
|
|
-
|
|
|
foreach (TARGET ${STATIC_LIBRARY_TARGETS})
|
|
|
get_target_property (SOURCES ${TARGET} SOURCES)
|
|
|
get_target_property (INT_DIR ${TARGET} LOCATION)
|
|
|
get_filename_component (INT_DIR ${INT_DIR} PATH)
|
|
|
if (MSVC)
|
|
|
if (CMAKE_GENERATOR MATCHES "2008")
|
|
|
- string (REPLACE /$(OutDir) "/${TARGET}.dir/$(ConfigurationName)" INT_DIR ${INT_DIR})
|
|
|
+ string (REPLACE /$(OutDir) /${TARGET}.dir/$(ConfigurationName) INT_DIR ${INT_DIR})
|
|
|
else ()
|
|
|
- string (REPLACE /$(Configuration) "/${TARGET}.dir/$(ConfigurationName)" INT_DIR ${INT_DIR})
|
|
|
+ string (REPLACE /$(Configuration) /${TARGET}.dir/$(ConfigurationName) INT_DIR ${INT_DIR})
|
|
|
endif ()
|
|
|
else ()
|
|
|
set (INT_DIR ${INT_DIR}/CMakeFiles/${TARGET}.dir)
|