aboutsummaryrefslogtreecommitdiffstats
path: root/heimdall/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'heimdall/CMakeLists.txt')
-rw-r--r--heimdall/CMakeLists.txt48
1 files changed, 48 insertions, 0 deletions
diff --git a/heimdall/CMakeLists.txt b/heimdall/CMakeLists.txt
new file mode 100644
index 0000000..95cdbe2
--- /dev/null
+++ b/heimdall/CMakeLists.txt
@@ -0,0 +1,48 @@
+cmake_minimum_required(VERSION 2.8.4)
+
+project(heimdall)
+
+if((NOT ${CMAKE_SYSTEM_NAME} MATCHES "Linux") AND (NOT DEFINED libusb_USE_STATIC_LIBS))
+ set(libusb_USE_STATIC_LIBS YES)
+endif((NOT ${CMAKE_SYSTEM_NAME} MATCHES "Linux") AND (NOT DEFINED libusb_USE_STATIC_LIBS))
+
+find_package(libusb REQUIRED)
+
+set(LIBPIT_INCLUDE_DIRS
+ ../libpit/source)
+
+set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11")
+
+if(MINGW)
+ set(CMAKE_EXE_LINKER_FLAGS "-static-libgcc -static-libstdc++ -static")
+endif(MINGW)
+
+if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
+ add_definitions(-DOS_LINUX)
+endif(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
+
+include_directories(SYSTEM ${LIBUSB_INCLUDE_DIRS})
+
+include_directories(${LIBPIT_INCLUDE_DIRS})
+
+set(HEIMDALL_SOURCE_FILES
+ source/Arguments.cpp
+ source/BridgeManager.cpp
+ source/ClosePcScreenAction.cpp
+ source/DetectAction.cpp
+ source/DownloadPitAction.cpp
+ source/FlashAction.cpp
+ source/HelpAction.cpp
+ source/InfoAction.cpp
+ source/Interface.cpp
+ source/main.cpp
+ source/PrintPitAction.cpp
+ source/Utility.cpp
+ source/VersionAction.cpp)
+
+include(LargeFiles)
+use_large_files(heimdall YES)
+add_executable(heimdall ${HEIMDALL_SOURCE_FILES})
+
+target_link_libraries(heimdall PRIVATE pit)
+target_link_libraries(heimdall PRIVATE usb-1.0)