mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-07-19 18:04:26 +08:00

The XS was left only for the unit / integration tests, and it links libslic3r only. No wxWidgets are allowed to be used from Perl starting from now.
17 lines
643 B
CMake
17 lines
643 B
CMake
# Distributed under the OSI-approved MIT License. See accompanying
|
|
# file LICENSE or https://github.com/Crascit/DownloadProject for details.
|
|
|
|
cmake_minimum_required(VERSION 2.8.2)
|
|
|
|
project(${DL_ARGS_PROJ}-download NONE)
|
|
|
|
include(ExternalProject)
|
|
ExternalProject_Add(${DL_ARGS_PROJ}-download
|
|
${DL_ARGS_UNPARSED_ARGUMENTS}
|
|
SOURCE_DIR "${DL_ARGS_SOURCE_DIR}"
|
|
BINARY_DIR "${DL_ARGS_BINARY_DIR}"
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
INSTALL_COMMAND ""
|
|
TEST_COMMAND ""
|
|
) |