blob: 4b0d99a723ef2b472ca8b8c634ad7677d805c9da (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
include_directories(${CMAKE_BINARY_DIR}/include)
include_directories(${CMAKE_SOURCE_DIR}/include)
include_directories(${PROJECT_BINARY_DIR})
add_executable(omc
main.c
str.c
strlist.c
ini.c
conda.c
environment.c
utils.c
system.c
download.c
deliverable.c
recipe.c
relocation.c
wheel.c
copy.c
artifactory.c
template.c
rules.c
)
install(TARGETS omc RUNTIME)
|