Initial commit.
This commit is contained in:
26
CMakeLists.txt
Normal file
26
CMakeLists.txt
Normal file
@@ -0,0 +1,26 @@
|
||||
cmake_minimum_required(VERSION 3.0)
|
||||
|
||||
project(T7)
|
||||
|
||||
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/CMake")
|
||||
|
||||
find_package(wxWidgets
|
||||
CONFIG
|
||||
REQUIRED
|
||||
)
|
||||
|
||||
find_package(Hidapi REQUIRED)
|
||||
|
||||
add_executable(T7
|
||||
PedalManager.h PedalManager.cpp
|
||||
KeyboardSimulation.h KeyboardSimulation.cpp
|
||||
XT7Main.h XT7Main.cpp
|
||||
UI/t7app.h UI/t7app.cpp
|
||||
UI/t7main.h UI/t7main.cpp
|
||||
)
|
||||
|
||||
install(TARGETS T7 RUNTIME DESTINATION bin)
|
||||
|
||||
target_link_libraries(T7 ${wxWidgets_LIBRARIES}
|
||||
${HIDAPI_LIBRARIES}
|
||||
)
|
||||
Reference in New Issue
Block a user