8 lines
148 B
CMake
8 lines
148 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
include_directories(../src)
|
|
|
|
add_executable(sl_compiler compiler.cpp)
|
|
|
|
target_link_libraries(sl_compiler SL++)
|