Files
mlpack/CMake/ConfigureGenerate.cmake
T

11 lines
429 B
CMake

# ConfigureGenerate.cmake: generate an mlpack binding file given input
# arguments.
#
# This file depends on the following variables being set:
#
# * GENERATE_CPP_IN: the .cpp.in file to configure.
# * GENERATE_CPP_OUT: the .cpp file we'll generate.
# * PROGRAM_MAIN_FILE: the file containing the main() function.
# * PROGRAM_NAME: the name of the program (i.e. "pca").
configure_file(${GENERATE_CPP_IN} ${GENERATE_CPP_OUT})