Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt - github.com/torch/cwrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db4010ef5e96b457623bc2a0a279f1263a6ca3f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
CMAKE_MINIMUM_REQUIRED(VERSION 2.6 FATAL_ERROR)
CMAKE_POLICY(VERSION 2.6)

SET(src "")
SET(luasrc 
	   ${CMAKE_CURRENT_SOURCE_DIR}/init.lua 
	   ${CMAKE_CURRENT_SOURCE_DIR}/cinterface.lua 
	   ${CMAKE_CURRENT_SOURCE_DIR}/types.lua)

INSTALL(FILES ${luasrc} DESTINATION ${LUADIR}/cwrap)