2008-03-25 18:27:18 +03:00
|
|
|
cmake_minimum_required (VERSION 2.6)
|
2006-12-07 07:05:10 +03:00
|
|
|
project(CustComDepend)
|
2006-12-30 03:20:56 +03:00
|
|
|
include_directories("${CustComDepend_SOURCE_DIR}")
|
2006-12-07 07:05:10 +03:00
|
|
|
add_definitions(-D_CRT_SECURE_NO_DEPRECATE=1)
|
|
|
|
set(EXECUTABLE_OUTPUT_PATH ${CustComDepend_BINARY_DIR}/bin)
|
|
|
|
add_executable(foo foo.cxx)
|
|
|
|
add_custom_command(
|
|
|
|
OUTPUT ${CustComDepend_BINARY_DIR}/bar.c
|
2006-12-07 19:38:53 +03:00
|
|
|
COMMAND ${CustComDepend_BINARY_DIR}/bin/${CMAKE_CFG_INTDIR}/foo
|
|
|
|
${CustComDepend_BINARY_DIR}/bar.c
|
2006-12-07 07:05:10 +03:00
|
|
|
DEPENDS ${CustComDepend_BINARY_DIR}/bin/${CMAKE_CFG_INTDIR}/foo
|
|
|
|
)
|
|
|
|
|
|
|
|
add_library(bar SHARED ${CustComDepend_BINARY_DIR}/bar.c)
|