diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2016-07-16 07:57:28 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2016-07-16 10:37:06 +0200 |
commit | ffa14762a506c39d897fd63f028b39904cf22a5f (patch) | |
tree | 361c863c7851f4c41797b5ec4fa8aa9c9213c4aa /apps/accel | |
parent | 8fdcf6b00313829230a61da4dfe210e5f82b371e (diff) | |
download | intel-quark-d2000-playground-master.tar.gz intel-quark-d2000-playground-master.tar.bz2 intel-quark-d2000-playground-master.tar.xz intel-quark-d2000-playground-master.zip |
o Changing how the toolchain create the qmsi libraries etc. Replace the hardcoded library with a function that the user can use to create its own special target. This target can be further customized by normal CMake methods by setting properties.HEADmaster
o Adding start of a app for playing with MOD-LCD3310 which is a PCD8544 connected through SPI.
Diffstat (limited to 'apps/accel')
-rw-r--r-- | apps/accel/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/accel/CMakeLists.txt b/apps/accel/CMakeLists.txt index 35948ae..2f342f7 100644 --- a/apps/accel/CMakeLists.txt +++ b/apps/accel/CMakeLists.txt @@ -1,4 +1,7 @@ add_executable(accel main.c) +target_link_libraries(accel PUBLIC qmsi_stdout) +target_link_libraries(accel PUBLIC qmsi_bmc_stdout) + set_target_properties(accel PROPERTIES CHIP QUARK_D2000) toolchain_target(accel) add_extra_commands(accel) |