aboutsummaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
blob: f71d036990f6eae1168089ec4ff0c9750bfe4fc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
include_directories(${CMAKE_SOURCE_DIR}/include)
include_directories(${PROJECT_BINARY_DIR})
add_compile_options(-Wall -Wextra -Wno-format-truncation)
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
)