mirror of
https://github.com/Naios/continuable.git
synced 2026-02-13 13:49:49 +08:00
rename
This commit is contained in:
parent
b6372156a8
commit
d407fa6387
@ -32,4 +32,4 @@ install:
|
|||||||
script:
|
script:
|
||||||
- $CXX --version
|
- $CXX --version
|
||||||
- make -j 4
|
- make -j 4
|
||||||
- ./fluent_test
|
- ./continue_test
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
project(fluent++ C CXX)
|
project(Continue.cpp C CXX)
|
||||||
cmake_minimum_required(VERSION 2.8)
|
cmake_minimum_required(VERSION 2.8)
|
||||||
|
|
||||||
include(CheckCXXCompilerFlag)
|
include(CheckCXXCompilerFlag)
|
||||||
@ -28,15 +28,15 @@ if(CMAKE_BUILD_TOOL MATCHES "(msdev|devenv|nmake)")
|
|||||||
add_definitions(-Wall -Wextra)
|
add_definitions(-Wall -Wextra)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
file(GLOB_RECURSE FLUENT_SOURCES fluent/*.cpp fluent/*.hpp fluent/*.h)
|
file(GLOB_RECURSE LIB_SOURCES include/*.cpp include/*.hpp include/*.h)
|
||||||
add_library(fluent STATIC ${FLUENT_SOURCES})
|
add_library(continue STATIC ${LIB_SOURCES})
|
||||||
|
|
||||||
include_directories(fluent)
|
include_directories(continue)
|
||||||
|
|
||||||
set(TEST_SOURCES test.cpp)
|
set(TEST_SOURCES test.cpp)
|
||||||
|
|
||||||
add_executable(fluent_test ${TEST_SOURCES})
|
add_executable(continue_test ${TEST_SOURCES})
|
||||||
|
|
||||||
target_link_libraries(fluent_test
|
target_link_libraries(continue_test
|
||||||
fluent
|
continue
|
||||||
)
|
)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user