This repository has been archived by the owner on Jul 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
38 lines (34 loc) · 4.03 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
cmake_minimum_required(VERSION 3.3)
project(BotbustersRebirth)
set(CMAKE_CXX_STANDARD 14)
file(GLOB_RECURSE SOURCES "src/*.*")
file(GLOB_RECURSE INCLUDES "src/*.*" "include/*.*")
include_directories(src)
include_directories(include)
file(GLOB_RECURSE DEP_INCLUDES "build/tmp/expandedArchives/wpilibc-cpp-2019.1.1-headers.zip_bbc5901b0e22ac527e7d642f2ec68009/*.*" "build/tmp/expandedArchives/hal-cpp-2019.1.1-headers.zip_a4a423977dbe7ed232e5bda2d2ecd0f3/*.*" "build/tmp/expandedArchives/wpiutil-cpp-2019.1.1-headers.zip_09b38849dbdfa883c4be908731924be2/*.*" "build/tmp/expandedArchives/ntcore-cpp-2019.1.1-headers.zip_de8bb156e7c972a7498927ac56d827f7/*.*" "build/tmp/expandedArchives/cscore-cpp-2019.1.1-headers.zip_8872a682a8b282d24272d8aebeb3f812/*.*" "build/tmp/expandedArchives/cameraserver-cpp-2019.1.1-headers.zip_8e6098f7e4e3b331e0504d2d66cebd71/*.*" "build/tmp/expandedArchives/opencv-cpp-3.4.4-4-headers.zip_ed19d56be47d37c8193b8f0377a9cfe6/*.*" "build/tmp/expandedArchives/chipobject-2019.12.1-headers.zip_45012665afb78c4c4816a3a35e8fe8aa/*.*" "build/tmp/expandedArchives/netcomm-2019.12.1-headers.zip_97d07b8af9f28e0504c6dc239ac1f176/*.*" "build/tmp/expandedArchives/boost.zip_4eedc0d1f9eae96c9a5d5b94623b6a14/include/*.*" "build/tmp/expandedArchives/spdlog.zip_409212c1b121bd9cd9e6c8fb6e4bc08c/spdlog-1.x/include/*.*" "build/tmp/expandedArchives/wpiapi-cpp-5.12.0-headers.zip_29daa6d91100a3e64a6c5c507f77fd54/*.*" "build/tmp/expandedArchives/api-cpp-5.12.0-headers.zip_4c0f1181ce667c2b1da6d536e53054ec/*.*" "build/tmp/expandedArchives/cci-5.12.0-headers.zip_dcc0606199f9f03e2afc8c79f610ebba/*.*" "build/tmp/expandedArchives/core-5.12.0-headers.zip_318ff6fc4a9e78b523ef7a1e4e5003aa/*.*" "build/tmp/expandedArchives/navx-cpp-3.1.344-headers.zip_744b022e6074b8136dc4cb47e25c93fd/*.*" "src/*.*" "include/*.*")
include_directories(build/tmp/expandedArchives/wpilibc-cpp-2019.1.1-headers.zip_bbc5901b0e22ac527e7d642f2ec68009)
include_directories(build/tmp/expandedArchives/hal-cpp-2019.1.1-headers.zip_a4a423977dbe7ed232e5bda2d2ecd0f3)
include_directories(build/tmp/expandedArchives/wpiutil-cpp-2019.1.1-headers.zip_09b38849dbdfa883c4be908731924be2)
include_directories(build/tmp/expandedArchives/ntcore-cpp-2019.1.1-headers.zip_de8bb156e7c972a7498927ac56d827f7)
include_directories(build/tmp/expandedArchives/cscore-cpp-2019.1.1-headers.zip_8872a682a8b282d24272d8aebeb3f812)
include_directories(build/tmp/expandedArchives/cameraserver-cpp-2019.1.1-headers.zip_8e6098f7e4e3b331e0504d2d66cebd71)
include_directories(build/tmp/expandedArchives/opencv-cpp-3.4.4-4-headers.zip_ed19d56be47d37c8193b8f0377a9cfe6)
include_directories(build/tmp/expandedArchives/chipobject-2019.12.1-headers.zip_45012665afb78c4c4816a3a35e8fe8aa)
include_directories(build/tmp/expandedArchives/netcomm-2019.12.1-headers.zip_97d07b8af9f28e0504c6dc239ac1f176)
include_directories(build/tmp/expandedArchives/boost.zip_4eedc0d1f9eae96c9a5d5b94623b6a14/include)
include_directories(build/tmp/expandedArchives/spdlog.zip_409212c1b121bd9cd9e6c8fb6e4bc08c/spdlog-1.x/include)
include_directories(build/tmp/expandedArchives/wpiapi-cpp-5.12.0-headers.zip_29daa6d91100a3e64a6c5c507f77fd54)
include_directories(build/tmp/expandedArchives/api-cpp-5.12.0-headers.zip_4c0f1181ce667c2b1da6d536e53054ec)
include_directories(build/tmp/expandedArchives/cci-5.12.0-headers.zip_dcc0606199f9f03e2afc8c79f610ebba)
include_directories(build/tmp/expandedArchives/core-5.12.0-headers.zip_318ff6fc4a9e78b523ef7a1e4e5003aa)
include_directories(build/tmp/expandedArchives/navx-cpp-3.1.344-headers.zip_744b022e6074b8136dc4cb47e25c93fd)
include_directories(src)
include_directories(include)
set(ALL_INCLUDES ${INCLUDES} ${DEP_INCLUDES})
add_executable(fake_frcUserProgram ${SOURCES} ${ALL_INCLUDES})
add_custom_target(frcUserProgram_build ./gradlew build WORKING_DIRECTORY ../ SOURCES ${SOURCES} ${ALL_INCLUDES})
add_custom_target(frcUserProgram_deploy ./gradlew deploy WORKING_DIRECTORY ../ SOURCES ${SOURCES} ${ALL_INCLUDES})
file(GLOB_RECURSE SOURCES "src/*.*")
file(GLOB_RECURSE INCLUDES "src/*.*" "include/*.*")
include_directories(src)
include_directories(include)