2008-03-25 11:27:18 -04:00
|
|
|
cmake_minimum_required (VERSION 2.6)
|
2006-12-06 23:05:10 -05:00
|
|
|
project(CustComDepend)
|
2006-12-29 19:20:56 -05:00
|
|
|
include_directories("${CustComDepend_SOURCE_DIR}")
|
2006-12-06 23:05:10 -05: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 11:38:53 -05:00
|
|
|
COMMAND ${CustComDepend_BINARY_DIR}/bin/${CMAKE_CFG_INTDIR}/foo
|
|
|
|
${CustComDepend_BINARY_DIR}/bar.c
|
2006-12-06 23:05:10 -05:00
|
|
|
DEPENDS ${CustComDepend_BINARY_DIR}/bin/${CMAKE_CFG_INTDIR}/foo
|
|
|
|
)
|
|
|
|
|
|
|
|
add_library(bar SHARED ${CustComDepend_BINARY_DIR}/bar.c)
|