forked from fishkingsin/ofxPSMove
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
executable file
·47 lines (39 loc) · 1.75 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
39
40
41
42
43
44
45
46
# ======================= ofxCMake Vers. 0.1 =============
# PUT THIS FILE INTO YOUR OPENFRAMEWORKS PROJECT FOLDER
# ========================================================
# ===================== CMake Settings ===================
# ========================================================
cmake_minimum_required( VERSION 3.3 )
project( PSMoveExample )
# ========================================================
# ===================== User Settings ====================
# ========================================================
# ---------------------- App name -----------------------
set( APP_NAME PSMoveExample )
# ------------------------ OF Path -----------------------
# --- If outside the OF structure, set an absolute OF path
set( OF_DIRECTORY_BY_USER "/opt/openframeworks" )
# --------------------- Source Files ---------------------
set( ${APP_NAME}_SOURCE_FILES
example/src/main.cpp
example/src/ofApp.cpp)
# ------------------------ AddOns -----------------------
set( OFX_ADDONS_ACTIVE
# ofxXmlSettings
# ofxOsc
# ofxGui
# ofxNetwork
# ofxVectorGraphics
# ofxThreadedImageLoader
# ofxAssimpModelLoader
# ofxKinect
ofxOpenCv
# ofxSvg
# ofxEmscripten (untested)
ofxPSMove
)
# =========================================================================
# ============================== OpenFrameworks ===========================
# =========================================================================
include( ${OF_DIRECTORY_BY_USER}/addons/ofxCMake/modules/main.cmake )
# =========================================================================