A user requested the ability to make the target names created by UseLATEX different than the name of the main tex file. The use case was for a multi-directory project with two or more subdirectories containing LaTeX files with the same name.
7 lines
149 B
CMake
7 lines
149 B
CMake
cmake_minimum_required(VERSION 2.8.4)
|
|
|
|
project(MultiDocuments NONE)
|
|
|
|
add_subdirectory(subdir1)
|
|
add_subdirectory(subdir2)
|
|
add_subdirectory(subdir2_2)
|